Skip to content

Instantly share code, notes, and snippets.

@LucianU
Created June 29, 2020 08:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save LucianU/5607c491d2c6bbd07acbc148ddb10346 to your computer and use it in GitHub Desktop.
Save LucianU/5607c491d2c6bbd07acbc148ddb10346 to your computer and use it in GitHub Desktop.
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