mirror of
https://github.com/librephoenix/nixos-config
synced 2025-01-19 15:15:52 +05:30
21 lines
498 B
Nix
21 lines
498 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
|
|
imports = [ ../picom/picom.nix ];
|
|
|
|
home.file.".config/xmonad/xmonad.hs".source = ./xmonad.hs;
|
|
home.file.".config/xmobar/base-xmobarrc".source = ./base-xmobarrc;
|
|
home.file.".config/xmonad/startup.sh".source = ./startup.sh;
|
|
|
|
home.file.".config/xmonad/lib/Colors/Stylix.hs".source = config.lib.stylix.colors {
|
|
template = builtins.readFile ./lib/Colors/Stylix.hs.mustache;
|
|
extension = ".hs";
|
|
};
|
|
|
|
home.packages = with pkgs; [
|
|
xmobar
|
|
dunst
|
|
];
|
|
}
|