12 lines
267 B
Nix
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";
|
|
}
|
|
|