This commit is contained in:
Nathan McCarty 2023-07-02 02:52:02 -04:00
parent b03a9ad919
commit abc64eab2a
Signed by: thatonelutenist
SSH Key Fingerprint: SHA256:hwQEcmak9E6sdU9bXc98RHw/Xd1AhpB5HZT7ZSVJkRM
2 changed files with 5 additions and 1 deletions

View File

@ -51,7 +51,7 @@ with nLib; {
};
targets = mkOption {
description = "Targets to install desktop services to";
default = [ "hyprland-session.target" ];
default = [ "graphical-session.target" ];
};
swaylock = {
package = mkOption {

View File

@ -78,5 +78,9 @@ with lib; {
MaxRetentionSec=7day
'';
}
# Partitioning tools
(mkIf config.nathan.config.isDesktop {
environment.systemPackages = with pkgs; [ parted gparted ];
})
];
}