You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nixfiles/config/profiles/headless.nix

13 lines
270 B
Nix

{ config, lib, pkgs, ... }: {
kyouma.machine-type.headless = true;
documentation.man.generateCaches = false;
environment.systemPackages = with pkgs; [
vim
];
services.openssh.enable = lib.mkDefault true;
services.vnstat.enable = lib.mkDefault true;
}