Files
sydnix/users/crumb/default.nix
Madeleine Sydney 8882a33d02 Fix /persist hack
2024-12-29 01:02:42 -07:00

22 lines
512 B
Nix

{
systemConfiguration = { config, ... }: {
isNormalUser = true;
# TODO: Don't hard-code `persist`. Use
# config.sydnix.impermanence.persistGroupName.
extraGroups = [ "wheel" "persist" ];
# Change this immediately after installation!
initialPassword = "password123";
};
homeConfiguration = { config, lib, pkgs, ... }: {
imports = [ ./programs.nix ];
home = {
stateVersion = "18.09";
packages = [
pkgs.hello
# pkgs.wezterm
];
};
};
}