Files
sydnix/users/crumb/default.nix
2024-12-21 09:49:20 -07:00

39 lines
698 B
Nix

{
systemUser = {
isNormalUser = true;
extraGroups = [ "wheel" "persist" ];
# Change this immediately after installation!
initialPassword = "password123";
};
home = { config, lib, pkgs, ... }: {
sydnix.impermanence = {
enable = false;
directories = [
# ".ssh"
# ".config/systemd"
];
mutableDotfiles = {
enable = false;
# files = [
# "nvim/.config/nvim/init.vim"
# "nvim/.vimrc"
# ];
# directories = [
# "qtile"
# ];
};
};
home = {
stateVersion = "18.09";
packages = [
pkgs.hello
# pkgs.wezterm
];
};
};
}