Files
sydnix/users/crumb/default.nix
Madeleine Sydney 56f2a65be2 home-manager
2024-12-28 22:21:16 -07:00

20 lines
400 B
Nix

{
systemConfiguration = {
isNormalUser = true;
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
];
};
};
}