dotfiles/hosts/arrow/default.nix

9 lines
192 B
Nix
Raw Normal View History

2024-03-24 17:16:20 +00:00
{ inputs, globals, overlays, ... }:
inputs.nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
specialArgs = { };
modules = import ./modules.nix { inherit inputs globals overlays; };
}