converted hyprland conf to nix

This commit is contained in:
kenji
2025-08-19 18:17:33 -05:00
parent b1daadc71e
commit 3c496175dc
8 changed files with 51 additions and 19 deletions
+20 -8
View File
@@ -1,17 +1,29 @@
{pkgs, ...}: {
{
pkgs,
config,
lib,
...
}: {
imports = [
./keybinds.nix
./execs.nix
./rules.nix
./env.nix
./colours.nix
./hypr/keybinds.nix
./hypr/execs.nix
./hypr/rules.nix
./hypr/env.nix
./hypr/colours.nix
];
home.file = {
".config/hypr/scripts" = {
source = builtins.path {
path = ../../.config/hypr/hyprland/scripts;
executable = true;
};
};
};
wayland.windowManager.hyprland = {
enable = true;
xwayland.enable = true;
systemd.enable = true;
settings = {
};
};
}