home-manager/laptop.nix

16 lines
331 B
Nix
Raw Normal View History

2023-08-30 20:51:38 +00:00
{pkgs, ...}: {
config.targets.genericLinux.enable = true;
2023-08-30 20:51:38 +00:00
config.home.packages = with pkgs; [
gnome-console
];
# Changes specific to the laptop
config.dconf.settings = {
"org/gnome/settings-daemon/plugins/power" = {
sleep-inactive-ac-type = "nothing";
power-button-action = "nothing";
};
};
}