home-manager/laptop.nix

12 lines
263 B
Nix
Raw Normal View History

{...}: {
config.targets.genericLinux.enable = true;
# Changes specific to the laptop
config.dconf.settings = {
"org/gnome/settings-daemon/plugins/power" = {
sleep-inactive-ac-type = "nothing";
power-button-action = "nothing";
};
};
}