diff --git a/nixos/hosts/base.nix b/nixos/hosts/base.nix index e5a9d87..b207951 100644 --- a/nixos/hosts/base.nix +++ b/nixos/hosts/base.nix @@ -1,4 +1,4 @@ -{ pkgs, ... }: { +{ inputs, pkgs, ... }: { nix.settings = { experimental-features = [ "nix-command" "flakes" ]; trusted-users = [ "root" "rae" ]; @@ -12,7 +12,6 @@ isNormalUser = true; extraGroups = [ "wheel" "docker" "jackaudio" ]; hashedPassword = "$y$j9T$YPq.Kl8rss1JmJ5Vg6cHE/$2kdfzCkkhaO.I4u714EQnS/ZFert5byisiRVxtC.9G2"; - shell = pkgs.fish; }; i18n.defaultLocale = "en_US.UTF-8"; diff --git a/nixos/hosts/desktop.nix b/nixos/hosts/desktop.nix index a8e470e..146b348 100644 --- a/nixos/hosts/desktop.nix +++ b/nixos/hosts/desktop.nix @@ -1,7 +1,7 @@ { config, pkgs, inputs, ... }: { imports = [ inputs.nix-flatpak.nixosModules.nix-flatpak - ../base.nix + ./base.nix ../packages.nix ]; @@ -144,5 +144,7 @@ ]; }; + users.users.rae.shell = pkgs.fish; + virtualisation.docker.enable = true; }