blob: 835bf08b4da2f6382b0cdfd5473399d65b4c6f02 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
{
lib,
pkgs,
...
}: {
imports = [
./programs
./shell
];
home = {
username = "seth";
homeDirectory = "/home/seth";
stateVersion = "23.05";
};
nix.package = lib.mkDefault pkgs.nixFlakes;
}
|