Add NixOS config

This commit is contained in:
Zeph Levy 2025-11-11 16:09:55 +01:00
commit 6020d64797
43 changed files with 1372 additions and 0 deletions

View file

@ -0,0 +1,6 @@
{
imports = [
./hyprland.nix
./hyprlock.nix
];
}

View file

@ -0,0 +1,5 @@
{ pkgs, ...}: {
programs.hyprland.enable = true;
environment.sessionVariables.NIXOS_OZONE_WL = "1";
}

View file

@ -0,0 +1,4 @@
{
programs.hyprlock.enable = true;
services.hypridle.enable = true;
}