diff --git a/homes/aarch64-linux/root@pi4/default.nix b/homes/aarch64-linux/root@pi4/default.nix deleted file mode 100644 index d8eca02..0000000 --- a/homes/aarch64-linux/root@pi4/default.nix +++ /dev/null @@ -1,26 +0,0 @@ -{ config, lib, ... }: -let - shellAliases = { - update-boot = "nixos-rebuild boot --max-jobs 10"; - update-switch = "nixos-rebuild switch --max-jobs 10"; - }; -in -{ - home = { - username = "root"; - homeDirectory = lib.mkForce "/${config.home.username}"; - enableNixpkgsReleaseCheck = false; - }; - - programs = { - zsh.shellAliases = shellAliases; - }; - - services = { - nextcloud-client.enable = lib.mkForce false; - kdeconnect = { - enable = false; - indicator = false; - }; - }; -} diff --git a/homes/x86_64-linux/root@nuc/default.nix b/homes/x86_64-linux/root@nuc/default.nix deleted file mode 100755 index ae274e6..0000000 --- a/homes/x86_64-linux/root@nuc/default.nix +++ /dev/null @@ -1,17 +0,0 @@ -{ config, lib, ... }: -let - shellAliases = { - update-boot = "nixos-rebuild boot --max-jobs 10"; - update-switch = "nixos-rebuild switch --max-jobs 10"; - }; -in -{ - home = { - username = "root"; - homeDirectory = lib.mkForce "/${config.home.username}"; - }; - - programs = { - zsh.shellAliases = shellAliases; - }; -}