Overhaul luna complete

This commit is contained in:
KoenDR06 2025-02-25 15:56:58 +01:00
parent 06f5971965
commit 6f9fdca876
110 changed files with 2408 additions and 2129 deletions

View file

@ -0,0 +1,31 @@
{
inputs,
outputs,
lib,
config,
pkgs,
...
}: let
inherit (lib) mkEnableOption mkIf mkOption types;
cfg = config.horseman.wm.qtile;
in {
options = {
horseman.desktop.qtile = {
enable = mkEnableOption "Qtile";
};
};
config = {
services.xserver = {
enable = true;
windowManager.qtile.enable = true;
};
system.activationScripts.script.text = ''
cd /home/horseman && \
rm -r .config/qtile && \
cp -r nix-config/modules/wm/qtile/config \
.config/qtile
'';
};
}