me like nix
0

Configure Feed

Select the types of activity you want to include in your feed.

comment out organelle

author
Sean Aye
date (Mar 22, 2026, 8:03 PM -0400) commit 43002b21 parent 0ab1bf94 change-id zvtppmqy
+43 -38
+43 -38
flake.nix
··· 31 31 url = "github:Mjoyufull/fsel"; 32 32 inputs.nixpkgs.follows = "nixpkgs"; 33 33 }; 34 - organelle-hello = { 35 - url = "path:/home/sean/dev/organelle-hello"; 36 - inputs.nixpkgs.follows = "nixpkgs"; 37 - }; 34 + # organelle-hello = { 35 + # url = "path:/home/sean/dev/organelle-hello"; 36 + # inputs.nixpkgs.follows = "nixpkgs"; 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 - organelle-hello, 57 56 nixos-raspberrypi, 58 57 ... 59 58 }@inputs: ··· 152 151 specialArgs = { inherit inputs; }; 153 152 }; 154 153 155 - organelle = nixpkgs.lib.nixosSystem { 156 - system = "aarch64-linux"; 157 - modules = [ 158 - "${nixpkgs}/nixos/modules/installer/sd-card/sd-image-aarch64.nix" 159 - agenix.nixosModules.default 160 - ./hosts/organelle/configuration.nix 161 - 162 - ({ 163 - nixpkgs.overlays = [ 164 - (final: super: { 165 - makeModulesClosure = x: super.makeModulesClosure (x // { allowMissing = true; }); 166 - }) 167 - ]; 168 - }) 169 - ]; 170 - specialArgs = { inherit inputs; }; 171 - }; 154 + # organelle = nixpkgs.lib.nixosSystem { 155 + # system = "aarch64-linux"; 156 + # modules = [ 157 + # "${nixpkgs}/nixos/modules/installer/sd-card/sd-image-aarch64.nix" 158 + # agenix.nixosModules.default 159 + # ./hosts/organelle/configuration.nix 160 + # 161 + # ({ 162 + # nixpkgs.overlays = [ 163 + # (final: super: { 164 + # makeModulesClosure = x: super.makeModulesClosure (x // { allowMissing = true; }); 165 + # }) 166 + # ]; 167 + # }) 168 + # ]; 169 + # specialArgs = { inherit inputs; }; 170 + # }; 172 171 173 172 kodi-pi = nixos-raspberrypi.lib.nixosSystemFull { 174 173 specialArgs = { inherit nixos-raspberrypi inputs; }; 175 174 modules = [ 176 - ({ nixos-raspberrypi, ... }: { 177 - imports = with nixos-raspberrypi.nixosModules; [ 178 - raspberry-pi-5.base 179 - raspberry-pi-5.page-size-16k 180 - raspberry-pi-5.display-vc4 181 - ]; 182 - }) 175 + ( 176 + { nixos-raspberrypi, ... }: 177 + { 178 + imports = with nixos-raspberrypi.nixosModules; [ 179 + raspberry-pi-5.base 180 + raspberry-pi-5.page-size-16k 181 + raspberry-pi-5.display-vc4 182 + ]; 183 + } 184 + ) 183 185 # Disable SDL3 test suite (testprocess fails in Nix sandbox) 184 - ({ pkgs, ... }: { 185 - nixpkgs.overlays = [ 186 - (final: prev: { 187 - sdl3 = prev.sdl3.overrideAttrs (old: { 188 - doCheck = false; 189 - }); 190 - }) 191 - ]; 192 - }) 186 + ( 187 + { pkgs, ... }: 188 + { 189 + nixpkgs.overlays = [ 190 + (final: prev: { 191 + sdl3 = prev.sdl3.overrideAttrs (old: { 192 + doCheck = false; 193 + }); 194 + }) 195 + ]; 196 + } 197 + ) 193 198 agenix.nixosModules.default 194 199 ./hosts/kodi-pi/configuration.nix 195 200 ];