2023-08-30 20:51:38 +00:00
|
|
|
{pkgs, ...}: {
|
2023-08-27 19:17:36 +00:00
|
|
|
config.targets.genericLinux.enable = true;
|
|
|
|
|
2023-08-30 20:51:38 +00:00
|
|
|
config.home.packages = with pkgs; [
|
|
|
|
gnome-console
|
|
|
|
];
|
|
|
|
|
|
|
|
config.programs.bash = {
|
|
|
|
initExtra = ''
|
|
|
|
PS1='[\u@\h \W]\$ '
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2023-08-27 19:17:36 +00:00
|
|
|
# Changes specific to the laptop
|
|
|
|
config.dconf.settings = {
|
|
|
|
"org/gnome/settings-daemon/plugins/power" = {
|
|
|
|
sleep-inactive-ac-type = "nothing";
|
|
|
|
power-button-action = "nothing";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|