nixos-config/hosts/lithium/configuration.nix
2025-10-28 16:10:19 -05:00

13 lines
326 B
Nix

{ config, pkgs, lib, ... }:
{
sops.defaultSopsFile = ./secrets/common.yaml;
networking.hostName = "lithium";
networking.domain = lib.mkForce config.vars.domain;
environment.systemPackages = with pkgs; [
zfs
];
services.openssh.enable = true;
programs.mosh.enable = true;
system.stateVersion = "25.05";
}