nixos_config/hosts/common/server.nix

17 lines
266 B
Nix
Raw Normal View History

2025-08-14 12:27:04 +02:00
{ config, pkgs, ... }:
{
services = {
openssh.enable = true;
}; # end services
services.fwupd.enable = true;
environment = {
systemPackages = with pkgs; [
devenv
direnv
]; # end systemPackages
}; # end environment
} # end file