devos/users/mae/home-manager-base.nix

16 lines
466 B
Nix
Raw Normal View History

2021-04-15 14:40:48 +02:00
{ pkgs, ... }:
{
2021-05-16 00:37:03 +02:00
imports = [ ../profiles/direnv ../profiles/git ../profiles/zsh ../profiles/neovim ../profiles/syncthing ../profiles/kdeconnect ];
2021-04-15 14:40:48 +02:00
home.sessionVariables = {
XDG_DATA_DIRS = "$XDG_DATA_DIRS:/var/lib/flatpak/exports/share:$HOME/.local/share/flatpak/exports/share";
2021-08-31 23:21:03 +02:00
# NIX_BUILD_SHELL = "zsh";
2021-04-15 14:40:48 +02:00
};
gtk.theme.name = "arc-dark";
2021-05-30 19:48:55 +02:00
gtk.theme.package = pkgs.arc-theme;
2021-08-24 14:46:19 +02:00
programs.go = {
2021-08-31 23:21:03 +02:00
enable = true;
goPath = ".local/go";
2021-08-24 14:46:19 +02:00
};
2021-04-15 14:40:48 +02:00
}