blob: 562222b700bf3b4647b6fe5c2f2451bd4d6de712 (
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
|
{
inputs,
system,
pkgs,
sysLib,
...
}: {
tiamat = inputs.nixpkgs.lib.nixosSystem {
inherit system;
specialArgs =
pkgs.lib.recursiveUpdate inputs
sysLib;
modules = [
../../hosts/tiamat/configuration.nix
inputs.agenix.nixosModules.default
inputs.home-manager.nixosModules.home-manager
{
home-manager = {
useGlobalPkgs = true;
useUserPackages = true;
users.soispha = import ../../home-manager;
extraSpecialArgs = {
inherit
pkgs
sysLib
;
inherit
(inputs)
strip_js_comments
user_js
system
neovim_config
impermanence
snap-sync
;
};
};
}
];
};
# mammun = self.outputs.nixosConfigurations.tiamat;
spawn = inputs.nixpkgs.lib.nixosSystem {
specialArgs = inputs;
modules = [../../hosts/spawn/configuration.nix];
};
}
|