23 lines
702 B
Nix
23 lines
702 B
Nix
{ pkgs, ... }:
|
|
{
|
|
home-manager.users.mae = {
|
|
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";
|
|
};
|
|
users.users.mae = {
|
|
uid = 1000;
|
|
|
|
isNormalUser = true;
|
|
hashedPassword = "$6$vyS4lqYbl3$OXztJnAC5ZayA4eCBSIRlYtsi9u1HnafsfNL28l4CJh0BISVlSj6D48CA80cshnvYW/EEzfEj7z4zTNFpJAT/.";
|
|
shell = pkgs.zsh;
|
|
extraGroups = [ "wheel" "video" "lp" "scanner" "adbusers" "render" ];
|
|
};
|
|
}
|