summaryrefslogtreecommitdiffstats
path: root/flake.nix
AgeCommit message (Collapse)Author
2021-01-08nixos: fix "nixos-rebuild build-vm-with-bootloader" for EFI systemsBjørn Forsman
(The first version of this change, in commit 39fad297fd, broke `nix-build -A nixosTests.installer.simpleUefiSystemdBoot`. This is the 2nd version, which hopefully does not break anything.) `nixos-rebuild build-vm-with-bootloader` currently fails with the default NixOS EFI configuration: $ cat >configuration.nix <<EOF { fileSystems."/".device = "/dev/sda1"; boot.loader.systemd-boot.enable = true; boot.loader.efi.canTouchEfiVariables = true; } EOF $ nixos-rebuild build-vm-with-bootloader -I nixos-config=$PWD/configuration.nix -I nixpkgs=https://github.com/NixOS/nixpkgs/archive/nixos-20.09.tar.gz [...] insmod: ERROR: could not insert module /nix/store/1ibmgfr13r8b6xyn4f0wj115819f359c-linux-5.4.83/lib/modules/5.4.83/kernel/fs/efivarfs/efivarfs.ko.xz: No such device mount: /sys/firmware/efi/efivars: mount point does not exist. [ 1.908328] reboot: Power down builder for '/nix/store/dx2ycclyknvibrskwmii42sgyalagjxa-nixos-boot-disk.drv' failed with exit code 32 [...] Fix it by setting virtualisation.useEFIBoot = true when needed. Before: * release-20.03: successful build, unsuccessful run * release-20.09 (and master): unsuccessful build After: * Successful build and run. Fixes #107255
2020-10-13flake.nix: allow inclusion of `nixpkgs` as `path:/.../`Maximilian Bosch
When adding `nixpkgs` as flake-input using the `path`-fetcher, you currently get the following error since neither `lastModifiedDate` nor `lastModified` are stored in `flake.lock` for paths: ``` error: --- EvalError --------------------------------------------------------------------------- nix-build at: (48:71) in file: /nix/store/147clg8svaxyj7pl80ra9kmmm72mdg94-source/flake.nix 47| system.nixos.versionSuffix = 48| ".${final.substring 0 8 (self.lastModifiedDate or self.lastModified)}.${self.shortRev or "dirty"}"; | ^ 49| system.nixos.revision = final.mkIf (self ? rev) self.rev; attribute 'lastModified' missing ``` This patch adds the fallback-value `19700101` to `versionSuffix` if none of `lastModified{,Date}` are set in the lockfile.
2020-09-17nixos-rebuild: add flake support for build-vmCole Helbling
This relies on users using `nixpkgs.lib.nixosSystem` to define their system; otherwise, the `vm` and `vmWithBootLoader` attributes will not exist.
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