blob: 5d644c50d5a8a75efe653fc53009f02a2c7cb274 (
plain)
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
|
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
determinate = {
url = "github:DeterminateSystems/nix-src/main";
inputs.nixpkgs.follows = "nixpkgs";
};
agenix = {
url = "github:ryantm/agenix";
inputs.nixpkgs.follows = "nixpkgs";
inputs.home-manager.follows = "";
};
disko = {
url = "github:nix-community/disko";
inputs.nixpkgs.follows = "nixpkgs";
};
nixos-facter-modules.url = "github:numtide/nixos-facter-modules";
lanzaboote = {
url = "github:nix-community/lanzaboote";
inputs.nixpkgs.follows = "nixpkgs";
};
hjem = {
url = "github:feel-co/hjem";
inputs.nixpkgs.follows = "nixpkgs";
};
tmux-tsunami = {
url = "github:bluedragon1221/tmux-tsunami";
inputs.nixpkgs.follows = "nixpkgs";
};
firefox-csshacks = {
url = "github:MrOtherGuy/firefox-csshacks";
flake = false;
};
};
outputs = inputs: let
inherit (import ./lib/nix-furnace/mkSystem.nix) mkNixosSystem mkSystemManagerSystem;
in {
nixosConfigurations."mercury" = mkNixosSystem {
inherit inputs;
hostname = "mercury";
username = "collin";
module_types = ["hjem" "nixos"];
};
nixosConfigurations."jupiter" = mkNixosSystem {
inherit inputs;
hostname = "jupiter";
username = "collin";
module_types = ["hjem" "nixos"];
};
nixosConfigurations."ganymede" = mkNixosSystem {
inherit inputs;
hostname = "ganymede";
username = "collin";
module_types = ["nixos" "hjem"];
};
};
}
|