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