hyprland.nix

This commit is contained in:
MichaelFisher1997 2024-06-05 23:12:03 +01:00
parent 9636126866
commit d2b95841c3
2 changed files with 2 additions and 6 deletions

View File

@ -100,10 +100,6 @@
programs.java.enable = true;
programs.firefox.enable = true;
programs.sway.enable = true;
programs.hyprland = {
enable = true;
xwayland.enable = true;
};
programs.fish.enable = true;

View File

@ -1,8 +1,8 @@
{ inputs, pkgs, config, username, ... }:
{ pkgs, ... }:
{
programs.hyprland = {
enable = true;
package = inputs.hyprland.packages.${pkgs.system}.hyprland;
# package = inputs.hyprland.packages.${pkgs.system}.hyprland;
xwayland.enable = true;
};
}