21 lines
451 B
Nix
21 lines
451 B
Nix
{
|
|
pkgs,
|
|
# options,
|
|
...
|
|
}: {
|
|
targets.genericLinux.enable = false;
|
|
|
|
programs.bash.shellAliases = {
|
|
hms = "home-manager switch --flake $HOME/.config/home-manager#pc";
|
|
};
|
|
|
|
dconf.settings = {
|
|
"org/gnome/settings-daemon/plugins/power" = {
|
|
sleep-inactive-ac-type = "nothing"; # Automatic suspend/hibernation creates a suspend/hibernation loop
|
|
power-button-action = "suspend";
|
|
};
|
|
};
|
|
|
|
services.obs.autostart = true;
|
|
}
|