Skip to content

Instantly share code, notes, and snippets.

View K900's full-sized avatar
💤
Occasionally sane

K900

💤
Occasionally sane
View GitHub Profile
@m1cr0man
m1cr0man / flake.nix
Last active October 30, 2023 19:55
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";
};