2024-05-22 01:10:07 +00:00

18 lines
324 B
Nix

{ lib, machineConfig, ... }:
{
imports = [
./home/programs.nix
./home/sshconfig.nix
./home/cli
] ++ lib.optionals (!machineConfig.server) [ ./home/gui.nix ];
nixpkgs.config.allowUnfree = true;
home = {
username = "richie";
homeDirectory = "/home/richie";
};
home.stateVersion = "23.11";
}