dotfiles/users/josh/configuration.nix
2024-04-07 12:54:35 -05:00

37 lines
983 B
Nix

{ config, lib, ylib, pkgs, settings, ... } @ args:
{
users.users.${settings.user.username} = {
initialPassword = "password1";
isNormalUser = true;
extraGroups = [ "wheel" "networkmanager" "video" "input" ];
shell = pkgs.zsh;
};
# TODO how to do this from home manager file instead
environment.pathsToLink = [ "/share/zsh" ];
programs.zsh = {
enable = true;
};
imports = ylib.umport {
path = lib.fileset.maybeMissing ./by_hosts/${settings.system.hostname}/nix_modules;
recursive = true;
};
home-manager.users.${settings.user.username} = {
imports =
# Common settings all users share
[ (settings.usersDir + "/_common/home.nix") ]
# Programs
++ ylib.umport {
path = ./home_manager;
recursive = true;
}
# Programs by host
++ ylib.umport {
path = lib.fileset.maybeMissing ./by_hosts/${settings.system.hostname}/home_manager;
recursive = true;
};
};
}