Created
June 29, 2020 08:08
-
-
Save LucianU/5607c491d2c6bbd07acbc148ddb10346 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let | |
nixpkgs = builtins.fetchTarball { | |
name = "nixos-20.03"; | |
url = "https://github.com/nixos/nixpkgs/archive/a84b797b28eb104db758b5cb2b61ba8face6744b.tar.gz"; | |
sha256 = "0f3s0m3bdd857s7zrgghl6vmj3hjqfaqcnd7sg33fzwakagwy0fp"; | |
}; | |
nixos = import "${nixpkgs}/nixos" { | |
configuration = { | |
imports = [ | |
./configuration.nix | |
]; | |
}; | |
}; | |
in | |
nixos.system |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment