Misc tweaks

This commit is contained in:
Emi Simpson 2023-07-22 13:32:39 -04:00
parent 7171d27bdd
commit 2f93a2faf7
Signed by: Emi
GPG Key ID: A12F2C2FFDC3D847
1 changed files with 3 additions and 1 deletions

View File

@ -98,11 +98,12 @@ let systemInformation = import ./system/system-information.nix; in
uid = 1312;
isNormalUser = true;
description = "Ember";
extraGroups = [ "networkmanager" "wheel" ];
extraGroups = [ "networkmanager" "wheel" "dialout"];
shell = pkgs.fish;
openssh.authorizedKeys.keys = import ./configs/programs/ssh/authorizedKeys.nix;
};
home-manager.users.ember = import ./configs/home.full.nix;
programs.fish.enable = true;
# Allow unfree packages
nixpkgs.config.allowUnfree = true;
@ -214,4 +215,5 @@ let systemInformation = import ./system/system-information.nix; in
hardware.cpu.amd.updateMicrocode = systemInformation.isAmd;
nix.settings.auto-optimise-store = true;
nix.settings.experimental-features = ["nix-command" "flakes"];
}