.github
.hydra
.vscode
docs
keys
modules
systems
users
alice
richie
home
default.nix
home.nix
secrets.yaml
default.nix
.envrc
.gitignore
.sops.yaml
flake.lock
flake.nix
treefmt.toml
18 lines
253 B
Nix
18 lines
253 B
Nix
{
|
|
imports = [
|
|
./home/programs.nix
|
|
./home/sshconfig.nix
|
|
./home/cli
|
|
./home/vscode
|
|
];
|
|
|
|
nixpkgs.config.allowUnfree = true;
|
|
|
|
home = {
|
|
username = "richie";
|
|
homeDirectory = "/home/richie";
|
|
};
|
|
|
|
home.stateVersion = "23.11";
|
|
}
|