Skip to content

Instantly share code, notes, and snippets.

@paperdigits
paperdigits / flake.nix
Created April 14, 2023 01:11 — forked from m1cr0man/flake.nix
The simplest Nix Flake for nixos-rebuild
# This can be built with nixos-rebuild --flake .#myhost build
{
description = "the simplest flake for nixos-rebuild";
inputs = {
nixpkgs = {
# Using the nixos-unstable branch specifically, which is the
# closest you can get to following the equivalent channel with flakes.
url = "github:NixOS/nixpkgs/nixos-unstable";
};