diff --git a/nixos.nix b/nixos.nix index c2dcd43..19704e3 100644 --- a/nixos.nix +++ b/nixos.nix @@ -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"]; } \ No newline at end of file