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