1
0
mirror of https://github.com/tboerger/nixos-config synced 2024-11-26 07:43:45 +01:00
github.com-tboerger-nixos-c.../servers/asgard/default.nix

31 lines
465 B
Nix
Raw Normal View History

2022-11-14 21:19:34 +01:00
{ config, lib, pkgs, ... }:
{
imports = [
../../shared/modules
../../shared/programs
../../shared/services
2022-11-14 21:19:34 +01:00
./disko.nix
2022-11-14 21:19:34 +01:00
./boot.nix
./networking.nix
./hardware.nix
./extras.nix
2022-11-14 21:19:34 +01:00
];
personal = {
services = {
shares = {
2022-11-14 21:19:34 +01:00
enable = config.personal.services.enable;
};
tailscale = {
enable = config.personal.services.enable;
};
};
};
system = {
stateVersion = "23.11";
2022-11-14 21:19:34 +01:00
};
}