-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdefault.nix
43 lines (38 loc) · 863 Bytes
/
default.nix
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
37
38
39
40
41
42
43
{
inputs,
outputs,
lib,
config,
pkgs,
...
}:
{
imports = [
../common/terminal
../common/graphical
../common/optional/legcord.nix
../common/optional/gaming-arm.nix
../common/optional/k8s-utils.nix
../common/optional/keybase.nix
];
nixpkgs = {
overlays = [
outputs.overlays.additions
outputs.overlays.stable-packages
];
config = {
allowUnfree = true;
# Workaround for https://github.com/nix-community/home-manager/issues/2942
allowUnfreePredicate = _: true;
};
};
home = {
username = "w4cbe";
homeDirectory = "/home/w4cbe";
};
programs.home-manager.enable = true;
# Nicely reload system units when changing configs
systemd.user.startServices = "sd-switch";
# https://nixos.wiki/wiki/FAQ/When_do_I_update_stateVersion
home.stateVersion = "24.11";
}