added basic hyprland system flake

This commit is contained in:
2025-02-06 16:40:07 +01:00
parent e221fa4f0d
commit 70a077f1ce

15
system/hyprland.nix Normal file
View File

@@ -0,0 +1,15 @@
{ pkgs, ... }:
{
imports = [ ];
programs.hyprland = {
enable = true;
};
environment.systemPackages = with pkgs; [
kitty
];
environment.sessionVariables.NIXOS_OZONE_WL = "1";
}