12 lines
157 B
Nix
12 lines
157 B
Nix
{ inputs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
./nix.nix
|
|
./overlays.nix
|
|
|
|
inputs.synix.nixosModules.device.server
|
|
];
|
|
|
|
nixpkgs.config.allowUnfree = true;
|
|
}
|