11 lines
174 B
Nix
11 lines
174 B
Nix
{ config, pkgs, ... }:
|
|
{
|
|
imports =
|
|
[
|
|
./hardware-configuration.nix
|
|
./modules/generic.nix
|
|
./modules/borg.nix
|
|
];
|
|
|
|
system.stateVersion = "22.05";
|
|
}
|