blob: 265b99cee55774a19f2a73caac65eb2271e4e4bd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
{
config,
lib,
pkgs,
headless ? true,
...
}:
{
# Hacky way to import our desktop modules if we aren't a headless system.
imports = (lib.optional (!headless) ./desktop.nix) ++ [
./modules/git
./modules/shell
];
home = {
username = "tdback";
homeDirectory = "/home/tdback";
stateVersion = "24.05";
packages = with pkgs.unstable; [
age
bat
dig
file
fzf
jq
neovim
ripgrep
tealdeer
unzip
zip
];
};
# Let home manager install and manage itself.
programs.home-manager.enable = true;
}
|