about summary refs log tree commit diff
path: root/modules/profiles/headless/default.nix
blob: 42c041b61a715fdb97048360a7ad2ec14e96ecfe (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
  config,
  lib,
  pkgs,
  this,
  ...
}:
let
  cfg = config.nixfiles.modules.profiles.headless;
in
{
  imports = lib.modulesIn ./. |> lib.attrValues;

  options.nixfiles.modules.profiles.headless.enable = lib.mkEnableOption "headless profile" // {
    default = this.isHeadless;
  };

  config = lib.mkIf cfg.enable {
    nixfiles.modules = {
      endlessh-go.enable = true;
      fail2ban.enable = true;
      openssh.server.enable = true;
    };

    hm.home.file = {
      ".hushlogin".text = "";
      ".bash_history".source = config.hm.lib.file.mkOutOfStoreSymlink "/dev/null";
    };

    boot.kernelPackages = pkgs.linuxPackages_hardened;

    nix = {
      gc = {
        automatic = true;
        dates = "weekly";
        options = "--delete-older-than 30d";
      };

      optimise = {
        automatic = true;
        dates = [ "daily" ];
      };
    };

    services.udisks2.enable = false;
  };
}

Consider giving Nix/NixOS a try! <3