-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflake.nix
More file actions
109 lines (100 loc) · 2.52 KB
/
Copy pathflake.nix
File metadata and controls
109 lines (100 loc) · 2.52 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
# Useful commands:
# - Update single dep `nix flake lock --update-input nixpkgs`
{
description = "Configuration for multiple of @hiibolt's systems.";
inputs = {
etc-nixos = {
url = "/etc/nixos";
flake = false;
};
nixpkgs.url = "github:nixos/nixpkgs/nixos-25.11";
unstable-nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
nixos-wsl.url = "github:nix-community/nixos-wsl";
claude-code-nix.url = "github:sadjow/claude-code-nix";
rust-overlay.url = "github:oxalica/rust-overlay";
kdiff.url = "github:hiibolt/kdiff";
nix-index-database = {
url = "github:nix-community/nix-index-database";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = inputs@{
nixpkgs,
unstable-nixpkgs,
nixos-wsl,
nix-index-database,
claude-code-nix,
rust-overlay,
...
}:
let
system = "x86_64-linux";
globalPkgsConfig = {
allowUnfree = true;
pulseaudio = true;
};
pkgs = import nixpkgs {
inherit system;
overlays = [ rust-overlay.overlays.default ];
config = globalPkgsConfig;
};
unstable-pkgs = import unstable-nixpkgs {
inherit system;
overlays = [ ];
config = globalPkgsConfig;
};
config = pkgs.config;
in
rec {
nixosConfigurations.default = nixosConfigurations.nuclearbombconsole;
nixosConfigurations.nuclearbombwsl = nixpkgs.lib.nixosSystem {
inherit system;
specialArgs = {
inherit inputs;
inherit unstable-pkgs;
inherit claude-code-nix;
enable_vscode = false;
keyboard = {
device = "by-path/pci-0000\\:00\\:14.0-usb-0\\:2.2\\:1.1-event-kbd";
};
};
modules = [
nix-index-database.nixosModules.nix-index
./nuclearbombwsl/configuration.nix
nixos-wsl.nixosModules.wsl
];
};
nixosConfigurations.nuclearbombconsole = nixpkgs.lib.nixosSystem {
inherit system;
specialArgs = {
inherit inputs;
inherit unstable-pkgs;
inherit claude-code-nix;
enable_vscode = true;
keyboard = {
device = "by-path/platform-i8042-serio-0-event-kbd";
};
};
modules = [
nix-index-database.nixosModules.nix-index
./nuclearbombconsole/configuration.nix
];
};
nixosConfigurations.nuclearbombwarhead = nixpkgs.lib.nixosSystem {
inherit system;
specialArgs = {
inherit inputs;
inherit unstable-pkgs;
inherit claude-code-nix;
enable_vscode = true;
keyboard = {
device = "by-path/pci-0000\\:00\\:14.0-usb-0\\:2.3\\:1.1-event-kbd";
};
};
modules = [
nix-index-database.nixosModules.nix-index
./nuclearbombwarhead/configuration.nix
];
};
};
}