NullBite 803a47d745
move things to somewhere that makes more sense
(need to rename everything now please kill me)
2024-01-01 12:53:02 -05:00

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;
};
}