A fork of attic a self-hostable Nix Binary Cache server
0
fork

Configure Feed

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

Migrate NixOS modules to flake-parts

+16 -13
-13
flake.nix
··· 87 87 stableTests = lib.mapAttrs' (name: lib.nameValuePair "stable-${name}") (makeIntegrationTests pkgsStable); 88 88 in lib.optionalAttrs pkgs.stdenv.isLinux (unstableTests // stableTests); 89 89 }) // { 90 - nixosModules = { 91 - atticd = { 92 - imports = [ 93 - ./nixos/atticd.nix 94 - ]; 95 - 96 - services.atticd.useFlakeCompatOverlay = false; 97 - 98 - nixpkgs.overlays = [ 99 - self.overlays.default 100 - ]; 101 - }; 102 - }; 103 90 }; 104 91 }; 105 92 }
+16
flake/nixos.nix
··· 1 + { config, ... }: 2 + { 3 + flake.nixosModules = { 4 + atticd = { 5 + imports = [ 6 + ../nixos/atticd.nix 7 + ]; 8 + 9 + services.atticd.useFlakeCompatOverlay = false; 10 + 11 + nixpkgs.overlays = [ 12 + config.flake.overlays.default 13 + ]; 14 + }; 15 + }; 16 + }