Files
nixos/modules-linux/default.nix
T

24 lines
341 B
Nix
Raw Normal View History

2022-09-07 20:01:51 -05:00
{ ... }:
{
imports = [
./automatic
./backup.nix
./gnome.nix
./home.nix
2023-03-07 17:17:24 -06:00
./kiwix-serve.nix
2022-09-07 20:01:51 -05:00
./linode.nix
./linux.nix
./proxy.nix
./rpi4.nix
./tailscale.nix
];
system.stateVersion = "22.05";
# I am a fan of network manager, myself
networking.networkmanager.enable = true;
nix.settings.auto-optimise-store = true;
}