21 lines
350 B
Nix
21 lines
350 B
Nix
{ config, lib, pkgs, ...}:
|
|
{
|
|
users.users.nullbite = {
|
|
isNormalUser = true;
|
|
extraGroups = [ "wheel" ];
|
|
packages = with pkgs; [
|
|
keychain
|
|
];
|
|
initialPassword = "changeme";
|
|
shell = pkgs.zsh;
|
|
};
|
|
|
|
# shell config
|
|
programs.zsh.enable = true;
|
|
programs.fzf = {
|
|
keybindings = true;
|
|
fuzzyCompletion = true;
|
|
};
|
|
|
|
}
|