eff6860aa2
The old configuration is still available in the legacy branch of this repository. It contains the mostly server oriented configuration while this new configuration is aimed at desktop usage.
17 lines
354 B
Nix
17 lines
354 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
programs.zsh.enable = true;
|
|
environment.variables = {
|
|
ZDOTDIR = "${config.users.users.hu.home}/.config/zsh";
|
|
};
|
|
|
|
users.users.hu = {
|
|
isNormalUser = true;
|
|
extraGroups = [ "wheel" ];
|
|
shell = pkgs.zsh;
|
|
hashedPasswordFile = "/nix/config/secrets/hu/pass";
|
|
};
|
|
|
|
# Todo: home-manager configuration
|
|
}
|