Laptop changes

This commit is contained in:
Jimbo 2025-02-25 11:50:54 -05:00
parent 5a76c612bc
commit 72fa26867c
4 changed files with 14 additions and 11 deletions

View file

@ -1,4 +1,4 @@
{ ... }: { lib, ... }:
{ {
imports = [ imports = [
./disko ./disko
@ -23,5 +23,12 @@
stateVersion = "24.11"; stateVersion = "24.11";
}; };
# Special options
services.globalprotect.enable = true; services.globalprotect.enable = true;
virtualisation.vmware.host.enable = true;
nixpkgs.allowUnfreePackages = [ "vmware-workstation" ];
environment.persistence."/persist".directories = [
"/home/jimbo/.vmware"
"/home/jimbo/vmware"
];
} }

View file

@ -1,11 +1,9 @@
{ config, lib, ... }: { config, lib, ... }:
{ {
home-manager.users."${config.sysusers.main}" = { home-manager.users."${config.sysusers.main}".home = {
home = { desktop.enable = true;
desktop.enable = true; remote-desktop.enable = true;
remote-desktop.enable = true; school.enable = true;
school.enable = true; stateVersion = lib.mkForce config.system.stateVersion;
stateVersion = lib.mkForce "24.11";
};
}; };
} }

View file

@ -1,7 +1,6 @@
{ config, lib, ... }: { config, lib, ... }:
{ {
home-manager.users."${config.sysusers.main}".home = { home-manager.users."${config.sysusers.main}".home = {
desktop.enable = false;
stateVersion = lib.mkForce config.system.stateVersion; stateVersion = lib.mkForce config.system.stateVersion;
}; };
} }

View file

@ -24,7 +24,6 @@
".local/share/mpd" ".local/share/mpd"
".local/share/nvim/undo" ".local/share/nvim/undo"
".local/share/fractal"
".local/share/PrismLauncher" ".local/share/PrismLauncher"
".local/share/Steam" ".local/share/Steam"
".local/share/TelegramDesktop" ".local/share/TelegramDesktop"
@ -40,7 +39,7 @@
files = [ files = [
".zsh_history" ".zsh_history"
".local/state/lazygit/state.yml" ".local/state/lazygit/state.yml"
".local/share/applications" # Create this so nothing gets generated inside of it ".local/share/applications" # Create directory so nothing generates inside of it
]; ];
}; };
}; };