diff options
| author | Natasha Moongrave <natasha@256phi.eu> | 2026-02-02 15:13:05 +0100 |
|---|---|---|
| committer | Natasha Moongrave <natasha@256phi.eu> | 2026-02-02 15:13:05 +0100 |
| commit | 59f294acda79f3ba574e5b7a6f2e851ec10fa001 (patch) | |
| tree | 229678e34427bec50c4b3676a31c18d3ab7e035a /modules | |
| parent | 0423ac08769fce26e4a75ea382874c06d97526f6 (diff) | |
fixed the syntax error
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/nixos/des/i3wm.nix | 8 | ||||
| -rw-r--r-- | modules/nixos/hyprland.nix | 7 |
2 files changed, 15 insertions, 0 deletions
diff --git a/modules/nixos/des/i3wm.nix b/modules/nixos/des/i3wm.nix new file mode 100644 index 0000000..be5eec5 --- /dev/null +++ b/modules/nixos/des/i3wm.nix @@ -0,0 +1,8 @@ +{ config, lib, pkgs, ... }: + +{ + services.xserver = { + enable = true; + windowManager.i3.enable = true; + }; +}
\ No newline at end of file diff --git a/modules/nixos/hyprland.nix b/modules/nixos/hyprland.nix index e69de29..a13aa20 100644 --- a/modules/nixos/hyprland.nix +++ b/modules/nixos/hyprland.nix @@ -0,0 +1,7 @@ +{ config, lib, pkgs, ... }: + +{ + services.hyprland = { + enable = true; + }; +}
\ No newline at end of file |
