diff options
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/home/hyprland/default.nix | 7 | ||||
| -rw-r--r-- | modules/home/hyprland/kitty.nix | 7 | ||||
| -rw-r--r-- | modules/home/i3wm/default.nix (renamed from modules/home/i3wm/original/default.nix) | 0 | ||||
| -rw-r--r-- | modules/home/i3wm/dunst.nix (renamed from modules/home/i3wm/original/dunst.nix) | 0 | ||||
| -rw-r--r-- | modules/home/i3wm/i3.nix (renamed from modules/home/i3wm/original/i3.nix) | 0 | ||||
| -rw-r--r-- | modules/home/i3wm/kitty.nix (renamed from modules/home/i3wm/original/kitty.nix) | 0 | ||||
| -rw-r--r-- | modules/home/i3wm/neovim.nix (renamed from modules/home/i3wm/original/neovim.nix) | 0 | ||||
| -rw-r--r-- | modules/home/i3wm/nnn.nix (renamed from modules/home/i3wm/original/nnn.nix) | 0 | ||||
| -rw-r--r-- | modules/home/i3wm/picom.nix (renamed from modules/home/i3wm/original/picom.nix) | 0 | ||||
| -rw-r--r-- | modules/home/i3wm/polybar.nix (renamed from modules/home/i3wm/original/polybar.nix) | 0 | ||||
| -rw-r--r-- | modules/home/i3wm/rofi.nix (renamed from modules/home/i3wm/original/rofi.nix) | 0 | ||||
| -rw-r--r-- | modules/home/i3wm/scripts.nix (renamed from modules/home/i3wm/original/scripts.nix) | 0 | ||||
| -rw-r--r-- | modules/home/i3wm/xdg.nix (renamed from modules/home/i3wm/original/xdg.nix) | 0 | ||||
| -rw-r--r-- | modules/nixos/hyprland.nix | 25 |
14 files changed, 14 insertions, 25 deletions
diff --git a/modules/home/hyprland/default.nix b/modules/home/hyprland/default.nix new file mode 100644 index 0000000..67ead8f --- /dev/null +++ b/modules/home/hyprland/default.nix @@ -0,0 +1,7 @@ +{ ... }: + +{ + imports = [ + ./hyprland.nix + ]; +}
\ No newline at end of file diff --git a/modules/home/hyprland/kitty.nix b/modules/home/hyprland/kitty.nix new file mode 100644 index 0000000..30f35d5 --- /dev/null +++ b/modules/home/hyprland/kitty.nix @@ -0,0 +1,7 @@ +{ pkgs, ... }: + +{ + programs.kitty = { + enable = true; + } +}
\ No newline at end of file diff --git a/modules/home/i3wm/original/default.nix b/modules/home/i3wm/default.nix index 6fef12b..6fef12b 100644 --- a/modules/home/i3wm/original/default.nix +++ b/modules/home/i3wm/default.nix diff --git a/modules/home/i3wm/original/dunst.nix b/modules/home/i3wm/dunst.nix index 6f217d9..6f217d9 100644 --- a/modules/home/i3wm/original/dunst.nix +++ b/modules/home/i3wm/dunst.nix diff --git a/modules/home/i3wm/original/i3.nix b/modules/home/i3wm/i3.nix index 35ce6de..35ce6de 100644 --- a/modules/home/i3wm/original/i3.nix +++ b/modules/home/i3wm/i3.nix diff --git a/modules/home/i3wm/original/kitty.nix b/modules/home/i3wm/kitty.nix index 17b220d..17b220d 100644 --- a/modules/home/i3wm/original/kitty.nix +++ b/modules/home/i3wm/kitty.nix diff --git a/modules/home/i3wm/original/neovim.nix b/modules/home/i3wm/neovim.nix index e59fd3d..e59fd3d 100644 --- a/modules/home/i3wm/original/neovim.nix +++ b/modules/home/i3wm/neovim.nix diff --git a/modules/home/i3wm/original/nnn.nix b/modules/home/i3wm/nnn.nix index 74b7dcb..74b7dcb 100644 --- a/modules/home/i3wm/original/nnn.nix +++ b/modules/home/i3wm/nnn.nix diff --git a/modules/home/i3wm/original/picom.nix b/modules/home/i3wm/picom.nix index d5f460f..d5f460f 100644 --- a/modules/home/i3wm/original/picom.nix +++ b/modules/home/i3wm/picom.nix diff --git a/modules/home/i3wm/original/polybar.nix b/modules/home/i3wm/polybar.nix index 95130cf..95130cf 100644 --- a/modules/home/i3wm/original/polybar.nix +++ b/modules/home/i3wm/polybar.nix diff --git a/modules/home/i3wm/original/rofi.nix b/modules/home/i3wm/rofi.nix index 9332efd..9332efd 100644 --- a/modules/home/i3wm/original/rofi.nix +++ b/modules/home/i3wm/rofi.nix diff --git a/modules/home/i3wm/original/scripts.nix b/modules/home/i3wm/scripts.nix index 4eb0b61..4eb0b61 100644 --- a/modules/home/i3wm/original/scripts.nix +++ b/modules/home/i3wm/scripts.nix diff --git a/modules/home/i3wm/original/xdg.nix b/modules/home/i3wm/xdg.nix index 7590ea8..7590ea8 100644 --- a/modules/home/i3wm/original/xdg.nix +++ b/modules/home/i3wm/xdg.nix diff --git a/modules/nixos/hyprland.nix b/modules/nixos/hyprland.nix deleted file mode 100644 index 9d00cec..0000000 --- a/modules/nixos/hyprland.nix +++ /dev/null @@ -1,25 +0,0 @@ -{ pkgs, ... }: - -{ - # Enable Hyprland - programs.hyprland = { - enable = true; - withUWSM = true; - }; - environment.sessionVariables.NIXOS_OZONE_WL = "1"; - environment.sessionVariables.WLR_NO_HARDWARE_CURSORS = "1"; - - programs.hyprlock.enable = true; - services.hypridle.enable = true; - - environment.systemPackages = with pkgs; [ - pyprland - hyprpicker - hyprcursor - hyprlock - hypridle - hyprpaper - hyprsunset - hyprpolkitagent - ]; -}
\ No newline at end of file |
