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
+4 -6
View File
@@ -18,12 +18,10 @@
};
};
hyprland = {
useNixForConf = {
enable = lib.mkOption {
type = lib.types.bool;
default = false;
description = "Use .nix files for hyprland setup instead of exporting .config/hypr. Useful for modifiable configurations.";
};
useNixForConf = lib.mkOption {
type = lib.types.bool;
default = false;
description = "Use .nix files for hyprland setup instead of exporting .config/hypr. Useful for modifiable configurations.";
};
};
};