https://github.com/numtide/system-manager/pull/136

Contents:

@r-vdp
Avoid rec
ac4a95a

@r-vdp
Avoid re-importing nixpkgs multiple times
21bd839

@r-vdp
Avoid building the application twice
8706306

@r-vdp
Run clippy as part of the check phase
ca50566

@r-vdp
flake.lock: Update
1d968fb

@r-vdp
Adapt systemd module after merge of NixOS/nixpkgs#311394
270e3f0

@r-vdp
Add nix-vm-test flake input
58dd3f9

@r-vdp
Merge remote-tracking branch 'origin/main' into reduce_flake_deps
a92a05f

@r-vdp
flake.lock: Update
9843716

Co-authored-by: r-vdp <ramses@well-founded.dev>
This commit is contained in:
Sofie 2024-10-29 11:55:28 +01:00
parent 37d944cc5f
commit c099b40594
No known key found for this signature in database
GPG key ID: C9E9DE9EDCD42BC1
6 changed files with 188 additions and 152 deletions

View file

@ -26,6 +26,13 @@
example = "x86_64-linux";
default = throw "the option nixpkgs.hostPlatform needs to be set.";
};
pkgs = lib.mkOption {
type = lib.types.pkgs;
description = ''The pkgs module argument.'';
default = pkgs;
readOnly = true;
};
};
assertions = lib.mkOption {