From 2f93a2faf79337b4edc10f46372c3064153d8c24 Mon Sep 17 00:00:00 2001 From: Emi Simpson Date: Sat, 22 Jul 2023 13:32:39 -0400 Subject: [PATCH] Misc tweaks --- nixos.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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