devos/users/mae/home-manager-base.nix
2021-05-16 00:21:30 +02:00

13 lines
382 B
Nix

{ pkgs, ... }:
{
imports = [ ../profiles/direnv ../profiles/git ../profiles/zsh ../profiles/neovim ../profiles/syncthing ];
home.packages = with pkgs; [
arc-theme
];
home.sessionVariables = {
XDG_DATA_DIRS = "$XDG_DATA_DIRS:/var/lib/flatpak/exports/share:$HOME/.local/share/flatpak/exports/share";
NIX_BUILD_SHELL = "zsh";
};
gtk.theme.name = "arc-dark";
}