infrastructure

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

commit c0dd74547b55f3057fade511b77e5e7ad7875254
parent 7723d6647684fa1af930a709b5f646ccb04069ab
Author: Silas Brack <silasbrack@gmail.com>
Date:   Tue, 19 May 2026 19:07:28 +0200

feat: use dwl config

Diffstat:
Mhosts/gaia/configuration.nix | 8++++++--
Rconfig.h -> hosts/gaia/dwl_config.h | 0
2 files changed, 6 insertions(+), 2 deletions(-)

diff --git a/hosts/gaia/configuration.nix b/hosts/gaia/configuration.nix @@ -98,6 +98,12 @@ }; services.displayManager.ly.enable = true; + programs.dwl = { + enable = true; + package = (pkgs.dwl.override { + configH = ./dwl_config.h; + }); + }; programs.foot = { enable = true; @@ -108,8 +114,6 @@ }; }; - programs.dwl.enable = true; - services.pulseaudio.enable = false; security.rtkit.enable = true; services.pipewire = { diff --git a/config.h b/hosts/gaia/dwl_config.h