-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflake.nix
104 lines (90 loc) · 2.5 KB
/
flake.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
{
description = "My System Config";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
# rnnoise 0.2 is broken, so we use the old version:
nixpkgs-rnnoise.url = "github:nixos/nixpkgs/1d91b59670d5a9785c87a4e63a19695727166598";
agenix.url = "github:ryantm/agenix";
agenix.inputs.nixpkgs.follows = "nixpkgs";
home-manager = {
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
};
disko = {
url = "github:nix-community/disko";
inputs.nixpkgs.follows = "nixpkgs";
};
# hardware quirks:
nixos-hardware.url = "github:nixos/nixos-hardware/master";
# nix-build requires a default.nix file
flake-compat = {
url = "github:edolstra/flake-compat";
flake = false;
};
};
outputs = {
self,
nixpkgs,
agenix,
...
} @ inputs: let
systems = [
"x86_64-linux"
];
forAllSystems = nixpkgs.lib.genAttrs systems;
in {
lib = nixpkgs.lib.extend (self: _: {my = import ./lib {lib = self;};});
nixosConfigurations = import ./systems inputs;
formatter = forAllSystems (system: nixpkgs.legacyPackages.${system}.alejandra);
packages = forAllSystems (system: import ./packages nixpkgs.legacyPackages.${system});
overlays = import ./overlays {inherit inputs;};
templates = {
golang = {
path = ./templates/golang;
description = "Golang development environment";
};
};
devShells = forAllSystems (system: let
pkgs = import nixpkgs {
inherit system;
overlays = [
self.overlays.custompackages
];
};
in {
default = pkgs.mkShellMinimal {
packages = [
pkgs.nh
(
pkgs.writeShellScriptBin "agenix" ''
EDITOR="code --wait" ${pkgs.lib.getExe' agenix.packages.${system}.default "agenix"} "$@"
''
)
(
pkgs.writeShellScriptBin "boot" ''
${pkgs.nh}/bin/nh os boot
''
)
(
pkgs.writeShellScriptBin "apply" ''
${pkgs.nh}/bin/nh os switch
''
)
(
pkgs.writeShellScriptBin "update" ''
nix flake update
''
)
];
};
});
};
nixConfig = {
extra-substituters = [
"https://nix-community.cachix.org"
];
extra-trusted-public-keys = [
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
];
};
}