-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflake.nix
More file actions
95 lines (86 loc) · 2.21 KB
/
flake.nix
File metadata and controls
95 lines (86 loc) · 2.21 KB
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
{
description = "NixOS configuration";
nixConfig = {
experimental-features = [
"nix-command"
"flakes"
];
extra-substitutes = [
"https://nix-community.cachix.org"
"https://hyprland.cachix.org"
];
extra-trusted-public-keys = [
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
"hyprland.cachix.org-1:a7pgxzMz7+chwVL3/pzj6jIBMioiJM7ypFP8PwtkuGc="
];
};
# NOTE: nix version is manually kept in sync with home-manager
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
impermanence.url = "github:nix-community/impermanence";
sops-nix = {
url = "github:Mic92/sops-nix";
inputs.nixpkgs.follows = "nixpkgs";
};
disko = {
url = "github:nix-community/disko";
inputs.nixpkgs.follows = "nixpkgs";
};
home-manager = {
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs =
{
nixpkgs,
self,
sops-nix,
disko,
impermanence,
...
}@inputs:
let
inherit (self) outputs;
systems = [
"aarch64-linux"
"x86_64-linux"
];
forEachSystem = f: nixpkgs.lib.genAttrs systems f;
pkgsForSystem =
system: nixpkgsSource:
import nixpkgsSource {
inherit system;
overlays = [
#NOTE: add your custom overlays here
];
};
NixosConfiguration =
args:
nixpkgs.lib.nixosSystem {
modules = [
disko.nixosModules.disko
impermanence.nixosModules.impermanence
(import ./modules)
(import ./users)
]
++ args.modules;
specialArgs = {
inherit self inputs outputs;
}
// (args.specialArgs or { });
};
in
{
formatter = forEachSystem (s: nixpkgs.legacyPackages.${s}.nixfmt-rfc-style);
packages = forEachSystem (s: pkgsForSystem s nixpkgs);
nixosConfigurations = {
luna = NixosConfiguration {
modules = [ ./hosts/luna ];
};
mars = NixosConfiguration {
modules = [ ./hosts/mars ];
};
};
};
}