{ pkgs, lib, inputs, ... }: { disabledModules = ["services/web-servers/caddy/default.nix"]; imports = [ # Common Config ../common/packages.nix ../common/nixConfig.nix ../common/nixpkgsConfig.nix ../common/root.nix ../common/ssh.nix # My user, also a default. ../../users/mrhedgehog/default.nix # Machine-specific configurations. ./firewall.nix # Running Services ./services/caddy.nix ./services/nix-serve.nix ./services/hydra.nix ]; networking = { hostName = "marvin"; enableIPv6 = true; networkmanager = {enable = true;}; wireless = {enable = false;}; }; fileSystems = { "/" = { fsType = "btrfs"; device = "/dev/disk/by-label/nixos"; }; "/boot" = { fsType = "vfat"; device = "/dev/disk/by-label/BOOT"; }; "/storage" = { fsType = "btrfs"; device = "/dev/disk/by-label/storage"; }; }; # swapDevices = [{device = "/dev/disk/by-uuid/288d0da2-43a8-4377-a616-4a7d60672576";}]; }