Files
nixos/flake.nix
Matthew Stobbs cb6078e470 initial commit
Just base laptop system on demilich
2026-08-13 15:45:15 -05:00

17 lines
594 B
Nix

{
inputs = {
# This is pointing to an unstable release.
# If you prefer a stable release instead, you can change the word unstable to the latest number shown here: https://nixos.org/download
# i.e. nixos-24.11
# Use `nix flake update` to update the flake to the latest revision of the chosen release channel.
nixpkgs.url = "github:NixOS/nixpkgs/nixos-26.05";
};
outputs = inputs@{ self, nixpkgs, ... }: {
# NOTE: 'nixos' is the default hostname
nixosConfigurations."demilich" = nixpkgs.lib.nixosSystem {
modules = [ ./configuration.nix ];
};
};
}