alpha
Login
or
Join now
seanaye.bsky.social
/
nixos-config
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
me like nix
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
comment out organelle
author
Sean Aye
date
3 months ago
(Mar 22, 2026, 8:03 PM -0400)
commit
43002b21
43002b2172ed721acef022b76e9ac852841c3ea1
parent
0ab1bf94
0ab1bf9465fb137464b4b7a4fdbad2c686a03c8c
change-id
zvtppmqy
zvtppmqypqnwnrkrttvlvootrsuvkzkr
+43
-38
1 changed file
Expand all
Collapse all
Unified
Split
flake.nix
+43
-38
flake.nix
Reviewed
···
31
31
url = "github:Mjoyufull/fsel";
32
32
inputs.nixpkgs.follows = "nixpkgs";
33
33
};
34
34
-
organelle-hello = {
35
35
-
url = "path:/home/sean/dev/organelle-hello";
36
36
-
inputs.nixpkgs.follows = "nixpkgs";
37
37
-
};
34
34
+
# organelle-hello = {
35
35
+
# url = "path:/home/sean/dev/organelle-hello";
36
36
+
# inputs.nixpkgs.follows = "nixpkgs";
37
37
+
# };
38
38
trmnl-rs = {
39
39
url = "github:seanaye/trmnl-rs";
40
40
inputs.nixpkgs.follows = "nixpkgs";
···
53
53
copyparty,
54
54
nixos-hardware,
55
55
agenix,
56
56
-
organelle-hello,
57
56
nixos-raspberrypi,
58
57
...
59
58
}@inputs:
···
152
151
specialArgs = { inherit inputs; };
153
152
};
154
153
155
155
-
organelle = nixpkgs.lib.nixosSystem {
156
156
-
system = "aarch64-linux";
157
157
-
modules = [
158
158
-
"${nixpkgs}/nixos/modules/installer/sd-card/sd-image-aarch64.nix"
159
159
-
agenix.nixosModules.default
160
160
-
./hosts/organelle/configuration.nix
161
161
-
162
162
-
({
163
163
-
nixpkgs.overlays = [
164
164
-
(final: super: {
165
165
-
makeModulesClosure = x: super.makeModulesClosure (x // { allowMissing = true; });
166
166
-
})
167
167
-
];
168
168
-
})
169
169
-
];
170
170
-
specialArgs = { inherit inputs; };
171
171
-
};
154
154
+
# organelle = nixpkgs.lib.nixosSystem {
155
155
+
# system = "aarch64-linux";
156
156
+
# modules = [
157
157
+
# "${nixpkgs}/nixos/modules/installer/sd-card/sd-image-aarch64.nix"
158
158
+
# agenix.nixosModules.default
159
159
+
# ./hosts/organelle/configuration.nix
160
160
+
#
161
161
+
# ({
162
162
+
# nixpkgs.overlays = [
163
163
+
# (final: super: {
164
164
+
# makeModulesClosure = x: super.makeModulesClosure (x // { allowMissing = true; });
165
165
+
# })
166
166
+
# ];
167
167
+
# })
168
168
+
# ];
169
169
+
# specialArgs = { inherit inputs; };
170
170
+
# };
172
171
173
172
kodi-pi = nixos-raspberrypi.lib.nixosSystemFull {
174
173
specialArgs = { inherit nixos-raspberrypi inputs; };
175
174
modules = [
176
176
-
({ nixos-raspberrypi, ... }: {
177
177
-
imports = with nixos-raspberrypi.nixosModules; [
178
178
-
raspberry-pi-5.base
179
179
-
raspberry-pi-5.page-size-16k
180
180
-
raspberry-pi-5.display-vc4
181
181
-
];
182
182
-
})
175
175
+
(
176
176
+
{ nixos-raspberrypi, ... }:
177
177
+
{
178
178
+
imports = with nixos-raspberrypi.nixosModules; [
179
179
+
raspberry-pi-5.base
180
180
+
raspberry-pi-5.page-size-16k
181
181
+
raspberry-pi-5.display-vc4
182
182
+
];
183
183
+
}
184
184
+
)
183
185
# Disable SDL3 test suite (testprocess fails in Nix sandbox)
184
184
-
({ pkgs, ... }: {
185
185
-
nixpkgs.overlays = [
186
186
-
(final: prev: {
187
187
-
sdl3 = prev.sdl3.overrideAttrs (old: {
188
188
-
doCheck = false;
189
189
-
});
190
190
-
})
191
191
-
];
192
192
-
})
186
186
+
(
187
187
+
{ pkgs, ... }:
188
188
+
{
189
189
+
nixpkgs.overlays = [
190
190
+
(final: prev: {
191
191
+
sdl3 = prev.sdl3.overrideAttrs (old: {
192
192
+
doCheck = false;
193
193
+
});
194
194
+
})
195
195
+
];
196
196
+
}
197
197
+
)
193
198
agenix.nixosModules.default
194
199
./hosts/kodi-pi/configuration.nix
195
200
];