diff options
author | Jon Santmyer <jon@jonsantmyer.com> | 2024-01-07 12:00:08 -0500 |
---|---|---|
committer | Jon Santmyer <jon@jonsantmyer.com> | 2024-01-07 12:00:08 -0500 |
commit | 7b79203f54853733d4fae88943829d0e24e6e49f (patch) | |
tree | a352d199fad7453332b9308a6295164157729f27 /modules/desktop/hyprland | |
parent | 184bd30bcb303104a4981ac742d8f8961c5477e7 (diff) | |
download | nix-config-7b79203f54853733d4fae88943829d0e24e6e49f.tar.gz nix-config-7b79203f54853733d4fae88943829d0e24e6e49f.tar.bz2 nix-config-7b79203f54853733d4fae88943829d0e24e6e49f.zip |
massive overhaul
Diffstat (limited to 'modules/desktop/hyprland')
-rw-r--r-- | modules/desktop/hyprland/default.nix | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/modules/desktop/hyprland/default.nix b/modules/desktop/hyprland/default.nix deleted file mode 100644 index 2acf5b6..0000000 --- a/modules/desktop/hyprland/default.nix +++ /dev/null @@ -1,36 +0,0 @@ -{ config, lib, pkgs, user, ... }: -with lib; -let -in -{ - options = { - hyprland = { - enable = mkOption { - type = types.bool; - default = false; - }; - }; - }; - - config = mkIf (config.hyprland.enable) - { - environment.variables.WLR_NO_HARDWARE_CURSORS = "1"; - environment.systemPackages = with pkgs; [ - wayland - glib - wl-clipboard - wdisplays - hyprpaper - ]; - - programs.hyprland = { - enable = true; - xwayland.enable = true; - enableNvidiaPatches = true; - }; - - programs.waybar = { - enable = true; - }; - }; -} |