blob: faef25394da6bf3bce30469821b3ee5c6913102b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
{inputs, ...}: {
imports = [
inputs.disko.nixosModules.disko
./disks.nix
inputs.nixos-facter-modules.nixosModules.facter
{facter.reportPath = ./facter.json;}
../../system/nix.nix
];
systemd.network.wait-online.enable = false; # fix for weird wifi issue
system.stateVersion = "25.05";
}
|