16 lines
226 B
Nix
16 lines
226 B
Nix
|
|
{ config, lib, pkgs, ... }:
|
||
|
|
|
||
|
|
{
|
||
|
|
imports =
|
||
|
|
[
|
||
|
|
./hardware-configuration.nix
|
||
|
|
./modules/generic.nix
|
||
|
|
];
|
||
|
|
|
||
|
|
system.copySystemConfiguration = true;
|
||
|
|
system.stateVersion = "25.05";
|
||
|
|
|
||
|
|
}
|
||
|
|
|
||
|
|
# vim: set et ts=2 sw=2 ai:
|