Extract fish config

This commit is contained in:
Leonardo Eugênio 2022-08-23 23:42:36 -03:00
parent 40b4216818
commit 14571ce366
5 changed files with 100 additions and 86 deletions

View file

@ -405,8 +405,35 @@ in {
# # position
# layer=overlay
};
home.packages = with pkgs; [
waybar
dhist
bmenu
wdmenu
wlauncher
volumesh
pamixer
libnotify
xdg-utils
screenshotsh
];
systemd.user.services = {
mako = {
Unit = {
Description = "Notification daemon";
PartOf = [ "graphical-session.target" ];
After = [ "graphical-session.target" ];
};
Service = {
ExecStart = "${pkgs.mako}/bin/mako";
Restart = "on-failure";
};
Install = { WantedBy = [ "sway-session.target" ]; };
};
};
home.file = {
".local/share/backgrounds".source = ./backgrounds;
};
};
}