-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflake-utils.nix
127 lines (116 loc) · 3.83 KB
/
flake-utils.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{ self
, lib
, inputs
, fop-utils
, defaultNixpkgsConfig
, ...
}:
rec {
nixosModules = (import ./nixos/modules { inherit lib; });
nixosConfigs = (import ./nixos/cfgs { inherit lib; });
homeManagerModules = (import ./home-manager/modules { inherit lib; });
homeManagerConfigs = (import ./home-manager/cfgs { inherit lib; });
#region Home
mkHome = name:
{ extraModules ? [ ]
, graphicalModules ? [ ] # TODO: I actually hate everything about how this is done but I'm out of patience to fix this shit - hf future me :3
, specialArgs ? { }
}: {
"${name}" = { graphical ? false }: # Wrapper for requesting different variants
{ config, lib, pkgs, ... }@homeArgs:
let
baseArgs = {
inherit inputs fop-utils homeManagerModules; # Do NOT pass homeManagerConfigs through here or skibidi toilet will appear in your room at 3 AM
};
homeArgs' = { inherit config lib pkgs; } // homeArgs; # stupid but just to make sure nixd doesn't cry about unused arguments
fullArgs = baseArgs // homeArgs' // specialArgs;
sharedModules = [
homeManagerModules.mutability
homeManagerModules.nixgl
homeManagerModules.apparmor
inputs.chaotic.homeManagerModules.default
# "Optionated" configs
# TODO: Import all once they're reworked
homeManagerConfigs.shared.discord
];
userModules = [
homeManagerConfigs.base.main
homeManagerConfigs.${name}.main
];
userGraphicalModules = [
homeManagerConfigs.base.graphical
homeManagerConfigs.${name}.graphical
];
wrappedModules = builtins.map (mod: (mod fullArgs)) (
userModules
++ sharedModules
++ extraModules
++ lib.lists.optionals graphical (userGraphicalModules ++ graphicalModules)
);
in
{
imports = wrappedModules;
home = lib.mkDefault {
username = name;
homeDirectory = "/home/${name}";
stateVersion = "23.05";
};
};
};
mkHomeConfiguration = name:
{ homeUser ? self.homeUsers.${name}
, variantArgs ? { }
, extraModules ? [ ]
, extraOverlays ? [ ]
, targetNixpkgs ? inputs.nixpkgs
, targetHomeManager ? inputs.home-manager
, system
}: {
"${name}" = targetHomeManager.lib.homeManagerConfiguration {
pkgs = import targetNixpkgs (
defaultNixpkgsConfig system {
extraOverlays = [
inputs.nixgl.overlay
]
++ extraOverlays;
}
);
modules = [ (homeUser variantArgs) ] ++ extraModules;
};
};
#region System
mkSystem = name:
{ extraModules ? [ ]
, extraOverlays ? [ ]
# TODO: Set up users arg
, targetNixpkgs ? inputs.nixpkgs-unstable
, targetHomeManager ? inputs.home-manager-unstable
, system
}:
{
"${name}" = targetNixpkgs.lib.nixosSystem {
inherit system;
modules = [
{
networking.hostName = name;
nixpkgs = defaultNixpkgsConfig system { inherit extraOverlays; };
}
nixosConfigs.base
nixosConfigs.${name}
targetHomeManager.nixosModules.home-manager
inputs.sops-nix.nixosModules.sops
inputs.chaotic.nixosModules.default
inputs.flake-programs-sqlite.nixosModules.programs-sqlite
# "Optionated" configs
# TODO: Import all once they're reworked
nixosConfigs.shared.desktop-plasma6
nixosConfigs.shared._1password
]
++ extraModules;
specialArgs = {
inherit inputs fop-utils homeManagerModules nixosModules;
inherit (self) homeUsers;
};
};
};
}