Update NixOS config.
This commit is contained in:
parent
1f4ab8c8bd
commit
7f5ee7a34a
1 changed files with 4 additions and 1 deletions
|
@ -12,6 +12,9 @@
|
||||||
./hardware-configuration.nix
|
./hardware-configuration.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
|
# to make epson work
|
||||||
|
hardware.sane.enable = true; # enables support for SANE scanners
|
||||||
|
|
||||||
zramSwap.enable = true;
|
zramSwap.enable = true;
|
||||||
|
|
||||||
networking.hostName = "bluenix"; # Define your hostname.
|
networking.hostName = "bluenix"; # Define your hostname.
|
||||||
|
@ -26,7 +29,7 @@
|
||||||
users.users.elias = {
|
users.users.elias = {
|
||||||
isNormalUser = true;
|
isNormalUser = true;
|
||||||
description = "Elias Gasparis";
|
description = "Elias Gasparis";
|
||||||
extraGroups = [ "networkmanager" "wheel"];
|
extraGroups = [ "networkmanager" "wheel" "scanner"];
|
||||||
packages = with pkgs; [
|
packages = with pkgs; [
|
||||||
# thunderbird
|
# thunderbird
|
||||||
];
|
];
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue