Install hyprland

This commit is contained in:
Isshi0417 2024-07-10 16:17:31 +09:00
parent 7146080ba3
commit e1486bd0a7
3 changed files with 10 additions and 1 deletions

View File

@ -33,7 +33,7 @@
ferdium ferdium
git git
gh gh
alacritty kitty
vscode-fhs vscode-fhs
# School # School

View File

@ -7,6 +7,7 @@
./hardware/ssd/ssd.nix ./hardware/ssd/ssd.nix
./gaming.nix ./gaming.nix
./nh.nix ./nh.nix
./hyprland.nix
]; ];
swapDevices = [{ swapDevices = [{

View File

@ -0,0 +1,8 @@
{ pkgs, ... }:
{
programs.hyprland = {
enable = true;
xwayland.enable = true;
};
}