mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-09 22:12:56 +00:00
9 lines
192 B
Nix
9 lines
192 B
Nix
{ inputs, globals, overlays, ... }:
|
|
|
|
inputs.nixpkgs.lib.nixosSystem {
|
|
system = "x86_64-linux";
|
|
specialArgs = { };
|
|
modules = import ./modules.nix { inherit inputs globals overlays; };
|
|
}
|
|
|