Merge pull request #42 from nix-community/standalone

fix standalone example
This commit is contained in:
Jörg Thalheim 2022-09-13 13:34:29 +02:00 committed by GitHub
commit 3a239145b6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4,12 +4,8 @@
...
}: let
# We just import from the repository for testing here:
diskoNixos = import ../../. {
inherit lib;
};
disko = import ../../. {
inherit lib;
inherit pkgs;
};
# In your own system use something like this:
#import (builtins.fetchGit {
@ -47,7 +43,7 @@
};
in {
imports = [
(diskoNixos.config cfg)
(disko.config cfg)
];
boot.loader.grub.devices = [ "/dev/sda" ];
system.stateVersion = "22.05";