nixos-config/flake.nix

18 lines
585 B
Nix
Raw Normal View History

2024-03-09 17:41:02 -08:00
# /etc/nixos/flake.nix
{
inputs = {
# NOTE: Replace "nixos-23.11" with that which is in system.stateVersion of
# configuration.nix. You can also use latter versions if you wish to
# upgrade.
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
};
outputs = inputs@{ self, nixpkgs, ... }: {
# NOTE: 'nixos' is the default hostname set by the installer
2024-03-09 17:48:43 -08:00
nixosConfigurations.valhalla = nixpkgs.lib.nixosSystem {
2024-03-09 17:41:02 -08:00
# NOTE: Change this to aarch64-linux if you are on ARM
system = "x86_64-linux";
modules = [ ./configuration.nix ];
};
};
}