mirror of
https://forge.katzen.cafe/schrottkatze/nix-configs.git
synced 2024-11-06 07:36:23 +01:00
23 lines
444 B
Nix
23 lines
444 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
with lib; {
|
|
home-manager.users.jade = {pkgs, ...}: {
|
|
xsession.windowManager.xmonad = {
|
|
enable = true;
|
|
enableContribAndExtras = true;
|
|
config = ../../haskell/xmonad/xmonad.hs;
|
|
};
|
|
home.file.wallpaper = {
|
|
target = "Pictures/wallpaper.jpg";
|
|
source = ../../other/wallpaper.jpg;
|
|
onChange = ''
|
|
feh --bg-fill ~/Pictures/wallpaper.jpg;
|
|
'';
|
|
};
|
|
};
|
|
}
|