mirror of
https://github.com/tboerger/nixos-config
synced 2024-11-22 18:21:58 +01:00
31 lines
465 B
Nix
31 lines
465 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
../../shared/modules
|
|
../../shared/programs
|
|
../../shared/services
|
|
|
|
./disko.nix
|
|
./boot.nix
|
|
./networking.nix
|
|
./hardware.nix
|
|
./extras.nix
|
|
];
|
|
|
|
personal = {
|
|
services = {
|
|
shares = {
|
|
enable = config.personal.services.enable;
|
|
};
|
|
tailscale = {
|
|
enable = config.personal.services.enable;
|
|
};
|
|
};
|
|
};
|
|
|
|
system = {
|
|
stateVersion = "23.11";
|
|
};
|
|
}
|