-
Notifications
You must be signed in to change notification settings - Fork 0
/
flake.nix
145 lines (129 loc) · 4.19 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
{
description = "Kevin's NixOS Flake";
inputs = {
# Some cool flake utils for smooth configuration
systems.url = "github:nix-systems/default";
flake-utils.url = "github:numtide/flake-utils";
flake-utils.inputs.systems.follows = "systems";
# Nix Packages
# nixpkgs.url = "github:NixOS/nixpkgs/nixos-23.11";
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
# Home Manager
home-manager.url = "github:nix-community/home-manager";
home-manager.inputs.nixpkgs.follows = "nixpkgs";
# Nix Hardware Modules
nixos-hardware.url = "github:NixOS/nixos-hardware/master";
# Nix Darwin
nix-darwin.url = "github:LnL7/nix-darwin";
nix-darwin.inputs.nixpkgs.follows = "nixpkgs";
# Nix Vim
nixvim.url = "github:nix-community/nixvim/9f7c78852f37126244b43e71e5158cdc3d70ad0a";
nixvim.inputs.nixpkgs.follows = "nixpkgs";
# Peronal Neovim Flake
neovim-flake.url = "github:kevinlmadison/neovim-flake";
# Dylan **loves** candy
hyprland.url = "github:hyprwm/Hyprland/v0.38.1";
hyprland.inputs.nixpkgs.follows = "nixpkgs";
hyprland.inputs.systems.follows = "systems";
# At this point I'm stuck with Miryoku
kmonad.url = "git+https://github.com/kmonad/kmonad?submodules=1&dir=nix";
kmonad.inputs.nixpkgs.follows = "nixpkgs";
# # Com'on rust
# rust-overlay.url = "github:oxalica/rust-overlay";
# rust-overlay.inputs.nixpkgs.follows = "nixpkgs";
};
outputs = {
self,
nixpkgs,
home-manager,
nixos-hardware,
nix-darwin,
neovim-flake,
kmonad,
...
} @ inputs: let
username = "kelevra";
stateVersion = "24.05";
home-modules = {
home-manager.backupFileExtension = "bak";
home-manager.useGlobalPkgs = false;
home-manager.useUserPackages = true;
home-manager.extraSpecialArgs = {inherit inputs username stateVersion;};
home-manager.users.kelevra = import ./home;
};
in {
darwinConfigurations = {
"m3" = nix-darwin.lib.darwinSystem {
system = "aarch64-darwin";
specialArgs = {inherit inputs;};
modules = [
./hosts/m3/default.nix
home-manager.darwinModules.home-manager
home-modules
# ({pkgs, ...}: {
# nixpkgs.overlays = [inputs.rust-overlay.overlays.default];
# environment.systemPackages = [pkgs.rust-bin.stable.latest.default];
# })
];
};
};
nixosConfigurations = {
"vader" = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
specialArgs = inputs;
modules = [
./hosts/vader/default.nix
home-manager.nixosModules.home-manager
home-modules
nixos-hardware.nixosModules.msi-b350-tomahawk
];
};
"thinkpad" = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
specialArgs = {inherit inputs;};
modules = [
./hosts/thinkpad/default.nix
home-manager.nixosModules.home-manager
home-modules
nixos-hardware.nixosModules.lenovo-thinkpad-x220
];
};
"xps" = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
specialArgs = inputs;
modules = [
./hosts/xps/default.nix
home-manager.nixosModules.home-manager
home-modules
#j-link.nixosModule
nixos-hardware.nixosModules.dell-xps-13-9360
];
};
images = {
rpi = self.nixosConfigurations.rpi.config.system.build.sdImage;
};
# nix build .#nixosConfigurations.rpi.config.system.build.sdImage
"rpi" = nixpkgs.lib.nixosSystem {
system = "aarch64-linux";
modules = [
./hosts/rpi
home-manager.nixosModules.home-manager
{
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
home-manager.extraSpecialArgs = {inherit inputs;};
home-manager.users.kelevra = import ./home/rpi;
}
"${nixpkgs}/nixos/modules/installer/sd-card/sd-image-aarch64.nix"
{
config = {
system = {
stateVersion = "23.11";
};
};
}
];
};
};
};
}