diff options
Diffstat (limited to 'flake.nix')
| -rw-r--r-- | flake.nix | 10 |
1 files changed, 8 insertions, 2 deletions
@@ -22,12 +22,18 @@ }; outputs = - { self, nixpkgs, ... }@inputs: + { self, nixpkgs, nixpkgs-stable, ... }@inputs: { # packages."x86_64-linux".full-iso = self.nixosConfigurations.full-iso.config.system.build.isoImage; - formatter.x86_64-linux = nixpkgs.legacyPackages.x86_64-linux.nixfmt-tree; + overlays = { + stable_overlays = import ./overlays/stable_overrides.nix { + inherit nixpkgs; + inherit nixpkgs-stable; + }; + }; + nixosConfigurations = { apocalypse = nixpkgs.lib.nixosSystem { specialArgs = { |
