12 lines
135 B
Nix
12 lines
135 B
Nix
{ modulesPath, ... }:
|
|
|
|
{
|
|
imports = [
|
|
./boot.nix
|
|
./filesystem.nix
|
|
./hardware.nix
|
|
];
|
|
system.stateVersion = "23.11";
|
|
}
|
|
|