-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdefault.nix
49 lines (43 loc) · 1.03 KB
/
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
44
45
46
47
48
49
{
config,
inputs,
outputs,
pkgs,
lib,
secrets,
...
}:
{
imports = [
inputs.home-manager.nixosModules.home-manager
./hardware.nix
../common/desktop.nix
../common/optional/appimage.nix
../common/optional/development.nix
../common/optional/gaming.nix
../common/optional/k8s-utils.nix
../common/optional/nvidia.nix
../common/optional/plasma6.nix
../common/optional/printing.nix
../common/optional/tailscale.nix
../common/optional/virtualization.nix
../common/optional/visual-boot.nix
];
boot.kernelPackages = pkgs.linuxPackages_latest;
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
# services.displayManager.sddm.wayland.enable = lib.mkForce false;
networking = {
hostName = "enterprise";
domain = secrets.hosts.enterprise.domain;
};
home-manager = {
extraSpecialArgs = {
inherit inputs outputs;
};
users = {
w4cbe = import ../../home-manager/w4cbe;
};
};
system.stateVersion = "24.11";
}