blob: b54a4f47ba2690d1547e92a9b740ae81abb7da87 (
plain) (
blame)
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
|
# This function creates a NixOS system based on our VM setup for a
# particular architecture.
{ nixpkgs, inputs }:
name:
{
system,
user,
darwin ? false,
}:
let
# The config files for this system.
machineConfig = ../machines/${name};
userOSConfig = ../users/${user}/${if darwin then "darwin" else "nixos"}.nix;
userHMConfig = ../users/${user}/home-manager.nix;
# NixOS vs nix-darwin functionst
systemFunc = if darwin then inputs.darwin.lib.darwinSystem else nixpkgs.lib.nixosSystem;
home-manager =
if darwin then inputs.home-manager.darwinModules else inputs.home-manager.nixosModules;
in
systemFunc rec {
inherit system;
modules = [
# Allow unfree packages.
{ nixpkgs.config.allowUnfree = true; }
machineConfig
userOSConfig
home-manager.home-manager
{
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
home-manager.users.${user} = import userHMConfig {
inputs = inputs;
darwin = darwin;
systemName = name;
};
}
inputs.agenix.nixosModules.default
# We expose some extra arguments so that our modules can parameterize
# better based on these values.
{
config._module.args = {
currentSystem = system;
currentSystemName = name;
currentSystemUser = user;
inputs = inputs;
};
}
];
}
|