11 lines
177 B
Nix
11 lines
177 B
Nix
{ config, pkgs, ... }:
|
|
{
|
|
imports =
|
|
[
|
|
./hardware-configuration.nix
|
|
./modules/generic.nix
|
|
];
|
|
system.stateVersion = "21.11";
|
|
}
|
|
|
|
# vim: set et ts=2 sw=2 ai:
|