refactor ft home configuration

This commit is contained in:
2025-02-10 17:36:28 +01:00
parent 213fa0136f
commit 650d422d21
17 changed files with 106 additions and 281 deletions

View File

@ -0,0 +1,32 @@
{ config, lib, pkgs, homeDir, ... }:
let
background = "${homeDir}/.config/nitrogen/wallpaper.png";
in
{
config = lib.mkIf config.mods.x11.enable {
home.file.".config/nitrogen/bg-saved.cfg".text = ''
[xin_0]
file=${background}
mode=5
bgcolor=#000000
[xin_1]
file=${background}
mode=5
bgcolor=#000000
[xin_2]
file=${background}
mode=5
bgcolor=#000000
[xin_3]
file=${background}
mode=5
bgcolor=#000000
'';
};
}