summary refs log tree commit diff stats
path: root/user/server.nix
blob: d0114007fdac3c0c064b444efe52febf720eea69 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ config
, ...
}:
{
  imports = [
    ./settings/base.nix
    ./settings/git.nix
    ./settings/nix.nix
    ./settings/nixos.nix
    ./settings/development/base.nix
  ];
  home = {
    username = "alan";
    homeDirectory = "/home/alan";
    stateVersion = "22.11";
  };
}