diff --git a/hosts/envy/default.nix b/hosts/envy/default.nix index 7682b0fd..dd0ba70a 100644 --- a/hosts/envy/default.nix +++ b/hosts/envy/default.nix @@ -1,4 +1,4 @@ -{ lib, ... }: +{ ... }: { imports = [ ./disko @@ -24,11 +24,4 @@ }; services.globalprotect.enable = true; - - virtualisation.vmware.host.enable = true; - nixpkgs.allowUnfreePackages = [ "vmware-workstation" ]; - environment.persistence."/persist".directories = [ - "/home/jimbo/.vmware" - "/home/jimbo/vmware" - ]; } diff --git a/hosts/envy/users/main/default.nix b/hosts/envy/users/main/default.nix index b4d550f7..f1daff78 100644 --- a/hosts/envy/users/main/default.nix +++ b/hosts/envy/users/main/default.nix @@ -1,9 +1,11 @@ { config, lib, ... }: { - home-manager.users."${config.sysusers.main}".home = { - desktop.enable = true; - remote-desktop.enable = true; - school.enable = true; - stateVersion = lib.mkForce config.system.stateVersion; + home-manager.users."${config.sysusers.main}" = { + home = { + desktop.enable = true; + remote-desktop.enable = true; + school.enable = true; + stateVersion = lib.mkForce "24.11"; + }; }; } diff --git a/hosts/kitty/users/main/default.nix b/hosts/kitty/users/main/default.nix index 9366cadc..bbe7e613 100644 --- a/hosts/kitty/users/main/default.nix +++ b/hosts/kitty/users/main/default.nix @@ -1,6 +1,7 @@ { config, lib, ... }: { home-manager.users."${config.sysusers.main}".home = { + desktop.enable = false; stateVersion = lib.mkForce config.system.stateVersion; }; } diff --git a/modules/system/devices/disks/impermanence/main/default.nix b/modules/system/devices/disks/impermanence/main/default.nix index cca8d2c8..668d85fa 100644 --- a/modules/system/devices/disks/impermanence/main/default.nix +++ b/modules/system/devices/disks/impermanence/main/default.nix @@ -24,6 +24,7 @@ ".local/share/mpd" ".local/share/nvim/undo" + ".local/share/fractal" ".local/share/PrismLauncher" ".local/share/Steam" ".local/share/TelegramDesktop" @@ -39,7 +40,7 @@ files = [ ".zsh_history" ".local/state/lazygit/state.yml" - ".local/share/applications" # Create directory so nothing generates inside of it + ".local/share/applications" # Create this so nothing gets generated inside of it ]; }; };