diff --git a/system/alt.nix b/system/alt.nix index 8b2ec6f..ede4c84 100644 --- a/system/alt.nix +++ b/system/alt.nix @@ -2,9 +2,10 @@ { users.users.alt = { - isNormalUser = true; + home = "/home/alt"; + isSystemUser = true; group = "users"; - description = "Alt"; + description = "Backup profile"; extraGroups = [ "networkmanager" ]; diff --git a/system/ishi.nix b/system/ishi.nix deleted file mode 100644 index 9da2166..0000000 --- a/system/ishi.nix +++ /dev/null @@ -1,14 +0,0 @@ -{ config, pkgs, ... }: - -{ - users.users.ishi = { - isNormalUser = true; - uid = 969; - group = "users"; - description = "Ishi"; - extraGroups = [ - "networkmanager" - ]; - shell = pkgs.fish; - }; -}