summaryrefslogtreecommitdiffstats
path: root/flake.nix
AgeCommit message (Collapse)Author
2020-07-28Merge pull request #92423 from Mic92/arm-flakesJörg Thalheim
flake.nix: add armv6l/armv7l systems
2020-07-23flake.nix: use lib.extendFabian Möller
This preserves the nixosSystem function if another flake uses lib.extend itself.
2020-07-06flake.nix: add armv6l/armv7l systemsJörg Thalheim
We built at least armv7l on hydra, therefor nixpkgs should also expose it.
2020-06-08flake.nix: Remove edition fieldEelco Dolstra
2020-04-03Don't pin 'nixpkgs' in the system registry by defaultEelco Dolstra
Nixpkgs takes up a lot of disk space so we shouldn't do this by default.
2020-04-02nix-daemon.nix: Add option nix.registryEelco Dolstra
This allows you to specify the system-wide flake registry. One use is to pin 'nixpkgs' to the Nixpkgs version used to build the system: nix.registry.nixpkgs.flake = nixpkgs; where 'nixpkgs' is a flake input. This ensures that commands like $ nix run nixpkgs#hello pull in a minimum of additional store paths. You can also use this to redirect flakes, e.g. nix.registry.nixpkgs.to = { type = "github"; owner = "my-org"; repo = "my-nixpkgs"; };
2020-02-10flake.nix: Add noteEelco Dolstra
2020-02-10Fix 'nix flake check'Eelco Dolstra
2020-02-05flake.nix: Handle missing rev attributeEelco Dolstra
Dirty trees no longer set 'rev', so we need to handle this.
2020-02-05flake.nix: Support more systemsEelco Dolstra
2020-02-05flake.nix: Remove packages, builders outputsEelco Dolstra
2020-02-05epoch -> editionEelco Dolstra
2020-02-05Export nixosModules.notDetectedEelco Dolstra
2020-02-05nixosSystem: Automatically set version suffix from flakeEelco Dolstra
E.g. $ nixos-version 19.03.20190913.af5eb77 (Koi)
2020-02-05flake.nix: Remove obsolete name attributeEelco Dolstra
2020-02-05Update flake interfaceEelco Dolstra
2020-02-05Add flake outputs for the manualsEelco Dolstra
2020-02-05flake.nix: Update epochEelco Dolstra
2020-02-05flake.nix: provides -> outputsEelco Dolstra
2020-02-05flake.nix: Add checkEelco Dolstra
2020-02-05legacyPkgs -> legacyPackagesEelco Dolstra
2020-02-05Export a function for building NixOS system configurationsEelco Dolstra
2020-02-05flake.nix: Set system explicitly for nowEelco Dolstra
Flakes now are evaluated in pure mode, so we can't rely on currentSystem anymore.
2020-02-05Add flake.nixEelco Dolstra