-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathflake.nix
More file actions
111 lines (93 loc) · 3.54 KB
/
flake.nix
File metadata and controls
111 lines (93 loc) · 3.54 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
description = "Xandor Schiefer's system configs";
nixConfig = {
extra-substituters = [
"https://cuda-maintainers.cachix.org"
"https://install.determinate.systems"
"https://devenv.cachix.org"
"https://nix-community.cachix.org"
];
extra-trusted-public-keys = [
"cuda-maintainers.cachix.org-1:0dq3bujKpuEPMCX6U4WylrUDZ9JyUG0VpVZa7CNfq5E="
"cache.flakehub.com-3:hJuILl5sVK4iKm86JzgdXW12Y2Hwd5G07qKtHTOcDCM="
"devenv.cachix.org-1:w1cLUi8dv3hnoSPGAuibQv+f9TZLr6cv/Hm9XgU50cw="
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
];
};
inputs = {
systems.url = "github:nix-systems/x86_64-linux";
nixpkgs.url = "github:NixOS/nixpkgs/nixos-25.11";
# Also see the 'unstable-packages' overlay at 'overlays/default.nix'.
nixpkgs-unstable.url = "github:NixOS/nixpkgs/nixos-unstable";
nixos-hardware.url = "github:NixOS/nixos-hardware/master";
home-manager.url = "github:nix-community/home-manager/release-25.11";
home-manager.inputs.nixpkgs.follows = "nixpkgs";
sops-nix.url = "github:Mic92/sops-nix";
sops-nix.inputs.nixpkgs.follows = "nixpkgs";
nur.url = "github:nix-community/NUR";
nur.inputs.nixpkgs.follows = "nixpkgs-unstable";
flake-utils.url = "github:numtide/flake-utils";
flake-utils.inputs.systems.follows = "systems";
determinate.url = "https://flakehub.com/f/DeterminateSystems/determinate/*";
devenv.url = "github:cachix/devenv/v1.11.2";
dms.url = "github:AvengeMedia/DankMaterialShell/stable";
dms.inputs.nixpkgs.follows = "nixpkgs";
dgop.url = "github:AvengeMedia/dgop";
dgop.inputs.nixpkgs.follows = "nixpkgs";
nix-index-database.url = "github:Mic92/nix-index-database";
nix-index-database.inputs.nixpkgs.follows = "nixpkgs";
nix-software-center.url = "github:zeorin/nix-software-center";
nix-software-center.inputs.nixpkgs.follows = "nixpkgs";
};
outputs =
{
self,
nixpkgs,
flake-utils,
...
}@inputs:
flake-utils.lib.eachDefaultSystem (
system:
let
pkgs = nixpkgs.legacyPackages.${system};
in
{
# Your custom packages
# Acessible through 'nix build', 'nix shell', etc
packages = import ./pkgs { inherit pkgs; };
# Devshell for bootstrapping
# Acessible through 'nix develop' or 'nix-shell' (legacy)
devShells = import ./shell.nix {
pkgs = pkgs.appendOverlays (
(builtins.attrValues self.outputs.overlays) ++ [ inputs.sops-nix.overlays.default ]
);
};
}
)
// {
# Your custom packages and modifications, exported as overlays
overlays = import ./overlays inputs;
# Reusable nixos modules you might want to export
# These are usually stuff you would upstream into nixpkgs
nixosModules = import ./modules/nixos;
# Reusable home-manager modules you might want to export
# These are usually stuff you would upstream into home-manager
homeModules = import ./modules/home-manager;
# NixOS configuration entrypoint
# Available through 'nixos-rebuild --flake .#your-hostname'
nixosConfigurations = {
guru = nixpkgs.lib.nixosSystem {
specialArgs = inputs;
modules = [ ./nixos/guru ];
};
monarch = nixpkgs.lib.nixosSystem {
specialArgs = inputs;
modules = [ ./nixos/monarch ];
};
ruby = nixpkgs.lib.nixosSystem {
specialArgs = inputs;
modules = [ ./nixos/ruby ];
};
};
};
}