summaryrefslogtreecommitdiff
path: root/common/default.nix
blob: fca1d03921ab21ec49118ea99323fcd06407f80e (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
{
  imports = [
    ./disks.nix
    ./fail2ban.nix
    ./hardware.nix
    ./mail.nix
    ./network.nix
    ./nginx.nix
    ./nvim.nix
    ./options.nix
    ./ssh.nix
  ];
  boot.loader.systemd-boot.enable = true;
  boot.loader.efi.canTouchEfiVariables = true;
  nix.settings.experimental-features = ["nix-command" "flakes"];
  customOps.owner = {
    username = "toufy";
    pubkey = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIN8CKkq7m/FPTqjAO3yGWhH7y+9flDjyNC9hQFenvbKs toufy";
  };
  customOps.domain = {
    name = "toufy";
    tld = "me";
  };
}