dotfiles/nixos/home-manager.nix

93 lines
1.8 KiB
Nix
Raw Normal View History

2021-07-13 03:37:03 -06:00
{ pkgs, ... }: {
xsession = {
2021-07-13 10:47:09 -06:00
enable = true;
2021-07-13 03:37:03 -06:00
preferStatusNotifierItems = true;
2021-07-13 10:47:09 -06:00
windowManager.command = "${pkgs.haskellPackages.imalison-xmonad}/bin/imalison-xmonad";
profileExtra = ''
load_xkb_map.sh
2021-07-13 10:47:09 -06:00
export ROFI_SYSTEMD_TERM="alacritty -e"
2021-07-13 20:41:06 -06:00
. "$HOME/.lib/login.sh"
2021-07-13 10:47:09 -06:00
'';
2021-07-13 03:37:03 -06:00
};
2021-07-13 10:47:09 -06:00
2021-07-13 03:37:03 -06:00
home.emptyActivationPath = false;
programs.home-manager.enable = true;
programs.ssh = {
forwardAgent = true;
};
# programs.zsh = {
# enable = true;
# };
services.gpg-agent = {
enable = true;
defaultCacheTtl = 8 * 60 * 60;
maxCacheTtl = 8 * 60 * 60;
enableSshSupport = true;
};
services.picom = {
enable = true;
};
services.blueman-applet = {
enable = true;
};
services.taffybar = {
enable = true;
package = pkgs.haskellPackages.imalison-taffybar;
};
# notifyosd
# skippyxd
services.kdeconnect = {
enable = true;
indicator = true;
};
services.network-manager-applet.enable = true;
services.udiskie = {
enable = true;
tray = "always";
};
services.status-notifier-watcher.enable = true;
services.random-background = {
enable = true;
display = "center";
interval = "1h";
imageDirectory = "%h/Pictures/wallpaper/use";
};
services.xsettingsd.enable = true;
services.volnoti.enable = true;
services.git-sync = {
enable = true;
repositories = [
{
name = "config";
path = "/home/imalison/config";
uri = "git@bitbucket.org:ivanmalison/config.git";
}
{
name = "org";
path = "/home/imalison/org";
uri = "git@bitbucket.org:ivanmalison/org.git";
}
{
name = "password-store";
path = "/home/imalison/.password-store";
uri = "git@github.com:IvanMalison/.password-store.git";
}
];
};
2021-07-13 03:37:03 -06:00
}