Skip to content

Commit

Permalink
nixos/suites/wlroots: use mkDefault options
Browse files Browse the repository at this point in the history
  • Loading branch information
khaneliman committed Dec 9, 2024
1 parent 184580c commit a486338
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions modules/nixos/suites/wlroots/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
...
}:
let
inherit (lib) mkIf;
inherit (lib) mkIf mkDefault;
inherit (lib.${namespace}) mkBoolOpt enabled;

cfg = config.${namespace}.suites.wlroots;
Expand All @@ -20,15 +20,15 @@ in

khanelinix = {
services = {
seatd = enabled;
seatd = mkDefault enabled;
};
};
programs = {
nm-applet.enable = true;
xwayland.enable = true;
nm-applet.enable = mkDefault true;
xwayland.enable = mkDefault true;

wshowkeys = {
enable = true;
enable = mkDefault true;
package = pkgs.wshowkeys;
};
};
Expand Down

0 comments on commit a486338

Please sign in to comment.