nixos-config/hosts/lithium/configuration.nix
2025-11-08 14:04:50 -06:00

12 lines
267 B
Nix

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