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

14 lines
360 B
Nix
Raw Normal View History

2021-04-15 14:40:48 +02:00
{ pkgs, ... }:
{
imports = [ ../profiles/direnv ../profiles/git ../profiles/zsh ../profiles/neovim ];
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";
}