nixos-config/flake.nix

19 lines
719 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";
2024-03-10 19:36:15 -07:00
nixos-needsreboot.url = "https://flakehub.com/f/thefossguy/nixos-needsreboot/*.tar.gz";
2024-03-09 17:41:02 -08:00
};
2024-03-10 19:36:15 -07:00
outputs = inputs@{ self, nixpkgs, nixos-needsreboot, ... }: {
2024-03-09 17:41:02 -08:00
# 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";
2024-03-10 00:44:38 -08:00
modules = [ ./hosts/desktop/valhalla/configuration.nix ];
2024-03-09 17:41:02 -08:00
};
};
}