1
0
mirror of https://github.com/tboerger/nixos-config synced 2024-11-23 03:32:08 +01:00
github.com-tboerger-nixos-c.../machines/midgard/default.nix

22 lines
249 B
Nix
Raw Normal View History

2022-02-20 17:46:48 +01:00
{ config, lib, pkgs, ... }:
{
imports = [
../modules
../services
2022-02-20 17:46:48 +01:00
./filesystems.nix
./boot.nix
./networking.nix
./hardware.nix
2022-02-20 17:46:48 +01:00
];
personal = {
services = { };
};
2022-02-20 17:46:48 +01:00
system = {
stateVersion = "21.11";
};
}