-
Notifications
You must be signed in to change notification settings - Fork 5
/
flake.nix
92 lines (79 loc) · 2.61 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
{
description = "NixOS configuration";
inputs.nixpkgs.url = "github:nixos/nixpkgs/nixos-24.05";
inputs.nixpkgs-unstable.url = "github:nixos/nixpkgs/nixos-unstable";
inputs.home-manager.url = "github:nix-community/home-manager/release-24.05";
inputs.home-manager.inputs.nixpkgs.follows = "nixpkgs";
inputs.nur.url = "github:nix-community/NUR";
inputs.nix-index-database.url = "github:Mic92/nix-index-database";
inputs.nix-index-database.inputs.nixpkgs.follows = "nixpkgs";
inputs.disko.url = "github:nix-community/disko";
inputs.disko.inputs.nixpkgs.follows = "nixpkgs";
inputs.jeezyvim.url = "github:LGUG2Z/JeezyVim";
outputs = inputs:
with inputs; let
secrets = builtins.fromJSON (builtins.readFile "${self}/secrets.json");
nixpkgsWithOverlays = system: (import nixpkgs rec {
inherit system;
config = {
allowUnfree = true;
permittedInsecurePackages = [
# FIXME:: add any insecure packages you absolutely need here
];
};
overlays = [
nur.overlay
jeezyvim.overlays.default
(_final: prev: {
# this allows us to reference pkgs.unstable
unstable = import nixpkgs-unstable {
inherit (prev) system;
inherit config;
};
})
];
});
configurationDefaults = args: {
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
home-manager.backupFileExtension = "hm-backup";
home-manager.extraSpecialArgs = args;
};
argDefaults = {
inherit secrets inputs self nix-index-database;
channels = {
inherit nixpkgs nixpkgs-unstable;
};
};
mkNixosConfiguration = {
system ? "x86_64-linux",
hostname,
username,
args ? {},
modules,
}: let
specialArgs = argDefaults // {inherit hostname username;} // args;
in
nixpkgs.lib.nixosSystem {
inherit system specialArgs;
pkgs = nixpkgsWithOverlays system;
modules =
[
(configurationDefaults specialArgs)
home-manager.nixosModules.home-manager
]
++ modules;
};
in {
formatter.x86_64-linux = nixpkgs.legacyPackages.x86_64-linux.alejandra;
nixosConfigurations.nixos = mkNixosConfiguration {
hostname = "nixos";
username = "nixos"; # FIXME: replace with your own username!
modules = [
disko.nixosModules.disko
./hetzner.nix
./linux.nix
];
};
};
}