-
Notifications
You must be signed in to change notification settings - Fork 2
/
flake.nix
executable file
·161 lines (147 loc) · 5.09 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
{
# BASED ON https://github.com/Misterio77/nix-config/
description = "My NixOS Configurations for multiple machines";
nixConfig = {
extra-substituters = [
"https://nix-community.cachix.org"
"https://nix-gaming.cachix.org"
];
extra-trusted-public-keys = [
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
"nix-gaming.cachix.org-1:nbjlureqMbRAxR1gJ/f3hxemL9svXaZF/Ees8vCUUs4="
];
};
inputs = {
# Core dependencies
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
# TODO: Update to nixos-24.11 once branch is made
nixpkgs-stable.url = "github:nixos/nixpkgs/nixos-24.05";
hardware.url = "github:nixos/nixos-hardware";
systems.url = "github:nix-systems/default-linux";
nur.url = "github:nix-community/NUR";
home-manager = {
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
};
nix-index-database = {
url = "github:nix-community/nix-index-database";
inputs.nixpkgs.follows = "nixpkgs";
};
agenix = {
url = "github:ryantm/agenix";
inputs.nixpkgs.follows = "nixpkgs";
inputs.home-manager.follows = "home-manager";
inputs.systems.follows = "systems";
};
disko = {
url = "github:nix-community/disko";
inputs.nixpkgs.follows = "nixpkgs";
};
git-hooks = {
url = "github:cachix/git-hooks.nix";
inputs.nixpkgs.follows = "nixpkgs";
};
rebuild-but-less-dumb = {
url = "github:llakala/rebuild-but-less-dumb";
inputs.nixpkgs.follows = "nixpkgs";
};
# Extras
stylix = {
url = "github:danth/stylix";
inputs.nixpkgs.follows = "nixpkgs";
inputs.home-manager.follows = "home-manager";
};
# TODO: https://github.com/NixOS/nixpkgs/pull/216245
nixpkgs-howdy.url = "github:fufexan/nixpkgs/howdy";
nix-gaming = {
url = "github:fufexan/nix-gaming";
inputs.nixpkgs.follows = "nixpkgs";
};
plasma-manager = {
url = "github:pjones/plasma-manager";
inputs.nixpkgs.follows = "nixpkgs";
inputs.home-manager.follows = "home-manager";
};
wezterm = {
url = "github:wez/wezterm?dir=nix";
inputs.nixpkgs.follows = "nixpkgs";
};
# TODO: https://github.com/NixOS/nixpkgs/issues/327982
zen-browser = {
url = "github:MarceColl/zen-browser-flake";
inputs.nixpkgs.follows = "nixpkgs";
};
wallpapers = {
url = "github:NovaViper/Wallpapers";
flake = false;
};
};
# These are all just outputs for the flake
outputs = {
self,
nixpkgs,
home-manager,
...
} @ inputs: let
# Overlay my custom lib and home-manager lib onto the default nixpkgs lib
lib =
nixpkgs.lib.extend (
final: prev:
import ./lib {
inherit inputs self;
lib = final;
}
)
// home-manager.lib;
# Flake evaluation tests and checks entrypoint
# Available through 'nix flake check'
checks = lib.forEachSystem (pkgs: import ./checks {inherit inputs pkgs;});
# NixOS configuration entrypoint
# Available through 'nixos-rebuild --flake .#your-hostname'
nixosConfigurations =
# Run mkHost for each nixosConfiguration, with key passed as host
builtins.mapAttrs lib.mkHost {
# Main desktop
ryzennova = {
username = "novaviper";
system = "x86_64-linux";
stateVersion = "24.11";
};
# Personal laptop
yoganova = {
username = "novaviper";
system = "x86_64-linux";
stateVersion = "24.11";
};
# TODO: Add installer config
};
in {
# Just inherit everything we made in the let statement
inherit lib checks nixosConfigurations;
# 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
#homeManagerModules = import ./modules/home-manager;
# Your custom packages and modifications, exported as overlays output
overlays = import ./overlays {inherit self;};
# Your custom packages
# Acessible through 'nix build', 'nix shell', etc
packages = lib.forEachSystem (pkgs: import ./pkgs {inherit pkgs;});
# Devshell for bootstrapping
# Acessible through 'nix develop' or 'nix-shell' (legacy)
devShells = lib.forEachSystem (pkgs: import ./shell.nix {inherit pkgs checks;});
# Formatter for your nix files, available through 'nix fmt'
# Other options beside 'alejandra' include 'nixpkgs-fmt'
formatter = lib.forEachSystem (pkgs: pkgs.alejandra);
# Standalone home-manager configuration entrypoint
# Available through 'home-manager --flake .#your-username@your-hostname'
homeConfigurations =
# Run mkHome for each homeConfiguration, with key passed as host
builtins.mapAttrs lib.mkHome {
"novaviper@ryzennova" = {inherit nixosConfigurations;};
"novaviper@yoganova" = {inherit nixosConfigurations;};
};
};
}