13 lines
326 B
Nix
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";
|
|
}
|
|
|