17 lines
366 B
Nix
17 lines
366 B
Nix
{...}: {
|
|
targets.genericLinux.enable = false;
|
|
|
|
programs.bash.shellAliases = {
|
|
hms = "home-manager switch --flake $HOME/.config/home-manager#laptop";
|
|
};
|
|
|
|
dconf.settings = {
|
|
"org/gnome/settings-daemon/plugins/power" = {
|
|
sleep-inactive-ac-type = "suspend";
|
|
power-button-action = "hibernate";
|
|
};
|
|
};
|
|
|
|
programs.obs.autostart = false;
|
|
}
|