Nix configurations for my homelab
2
fork

Configure Feed

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

Apply changes to build configuration with current nixpkgs version

yemou f72cede0 391487bb

+9 -1
+2
flake.nix
··· 22 22 23 23 roc-lang.url = "github:roc-lang/roc"; 24 24 tangled.url = "git+https://tangled.org/tangled.org/core?ref=refs/tags/v1.11.0-alpha"; 25 + 26 + nixpkgs-pr-netbird.url = "github:NixOS/nixpkgs?ref=refs/pull/490827/head"; 25 27 }; 26 28 27 29 outputs =
+2
modules/electron.nix
··· 1 1 { ... }: 2 2 { 3 + nixpkgs.config.permittedInsecurePackages = [ "electron-38.8.4" ]; 4 + 3 5 nixpkgs.overlays = [ 4 6 (final: prev: { 5 7 electron = final.electron-bin;
+5 -1
modules/netbird.nix
··· 1 - { config, ... }: 1 + { config, nixpkgs-pr-netbird, ... }: 2 2 { 3 + nixpkgs.overlays = [ 4 + (final: prev: { inherit (nixpkgs-pr-netbird.legacyPackages.${prev.stdenv.hostPlatform.system}) netbird; }) 5 + ]; 6 + 3 7 environment.persistence."/data/persistent".directories = [ 4 8 { 5 9 directory = config.services.netbird.clients.homelab.dir.state;