This commit is contained in:
jopejoe1 2024-01-13 15:03:29 +01:00
parent 486fed8909
commit 7569077f71
3 changed files with 19 additions and 0 deletions

16
modules/sway/default.nix Normal file
View file

@ -0,0 +1,16 @@
{ config, lib, ... }:
let cfg = config.jopejoe1.sway;
in {
options.jopejoe1.sway = {
enable = lib.mkEnableOption "Enable Sway";
};
config = lib.mkIf cfg.enable {
programs.sway = {
enable = true;
};
networking.networkmanager.enable = true;
};
}