cosmic module
This commit is contained in:
parent
25e19e9256
commit
bb8033d547
8 changed files with 168 additions and 70 deletions
21
modules/de_gnome_wayland.nix
Normal file
21
modules/de_gnome_wayland.nix
Normal file
|
@ -0,0 +1,21 @@
|
|||
{
|
||||
config,
|
||||
lib,
|
||||
...
|
||||
}:
|
||||
with lib;
|
||||
let
|
||||
name = "de_gnome_wayland";
|
||||
cfg = config.my_modules.${name};
|
||||
in
|
||||
{
|
||||
options = {
|
||||
my_modules.${name} = {
|
||||
enable = mkEnableOption (lib.mdDoc "Enable GNOME with wayland desktop environment");
|
||||
};
|
||||
};
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
# TODO
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue