Add build script, add ly, fix hypr

This commit is contained in:
Alexander
2025-08-03 18:24:21 +02:00
parent 4a2ba48482
commit 6dc0c4af4c
16 changed files with 903 additions and 256 deletions
+7
View File
@@ -0,0 +1,7 @@
{ config, lib, pkgs, ... }:
{
imports = [
./ly
];
}
+17
View File
@@ -0,0 +1,17 @@
{ config, lib, pkgs, ... }:
with lib;
let
cfg = config.dov.display-manager.ly;
in {
options.dov.display-manager.ly.enable = mkEnableOption "ly config";
config = mkIf cfg.enable {
services.displayManager.ly = {
enable = true;
};
};
}