mirror of
https://forge.katzen.cafe/schrottkatze/nix-configs.git
synced 2024-11-22 13:24:40 +01:00
26 lines
470 B
Nix
26 lines
470 B
Nix
{
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
home-manager.users.jade = {
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
home.packages = [pkgs.xmonadctl];
|
|
xsession.windowManager.xmonad = {
|
|
enable = true;
|
|
enableContribAndExtras = true;
|
|
config = ./xmonad.hs;
|
|
};
|
|
home.file.wallpaper = {
|
|
target = "Pictures/wallpaper.jpg";
|
|
source = ../../../other/wallpaper.jpg;
|
|
onChange = ''
|
|
feh --bg-fill ~/Pictures/wallpaper.jpg;
|
|
'';
|
|
};
|
|
};
|
|
}
|