From e1486bd0a7a2f87d2c4e9a45d1d86f94b7b5aed6 Mon Sep 17 00:00:00 2001 From: Isshi0417 Date: Wed, 10 Jul 2024 16:17:31 +0900 Subject: [PATCH] Install hyprland --- hosts/default/home.nix | 2 +- modules/nixos/alienware/alienware.nix | 1 + modules/nixos/alienware/hyprland.nix | 8 ++++++++ 3 files changed, 10 insertions(+), 1 deletion(-) create mode 100644 modules/nixos/alienware/hyprland.nix diff --git a/hosts/default/home.nix b/hosts/default/home.nix index dedd19f..c212121 100644 --- a/hosts/default/home.nix +++ b/hosts/default/home.nix @@ -33,7 +33,7 @@ ferdium git gh - alacritty + kitty vscode-fhs # School diff --git a/modules/nixos/alienware/alienware.nix b/modules/nixos/alienware/alienware.nix index 2e8b5b4..2d5f3f1 100644 --- a/modules/nixos/alienware/alienware.nix +++ b/modules/nixos/alienware/alienware.nix @@ -7,6 +7,7 @@ ./hardware/ssd/ssd.nix ./gaming.nix ./nh.nix + ./hyprland.nix ]; swapDevices = [{ diff --git a/modules/nixos/alienware/hyprland.nix b/modules/nixos/alienware/hyprland.nix new file mode 100644 index 0000000..995014c --- /dev/null +++ b/modules/nixos/alienware/hyprland.nix @@ -0,0 +1,8 @@ +{ pkgs, ... }: + +{ + programs.hyprland = { + enable = true; + xwayland.enable = true; + }; +} \ No newline at end of file