wip
This commit is contained in:
parent
1231503914
commit
c15ee0a39b
30 changed files with 703 additions and 118 deletions
26
modules/suites/desktop/default.nix
Normal file
26
modules/suites/desktop/default.nix
Normal file
|
@ -0,0 +1,26 @@
|
|||
{
|
||||
options,
|
||||
config,
|
||||
lib,
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
with lib; let
|
||||
cfg = config.aa.suites.desktop;
|
||||
in {
|
||||
options.aa.suites.desktop = with lib.types; {
|
||||
enable = mkEnableOption "common desktop configuration";
|
||||
};
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
aa = {
|
||||
desktop = {
|
||||
sway.enable = true;
|
||||
};
|
||||
|
||||
apps = {
|
||||
firefox.enable = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue