os/hosts/flora-6/flora-6.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

166 lines
4.4 KiB
Nix
Raw Normal View History

2022-10-05 10:02:28 +00:00
{
2023-01-28 22:51:33 +00:00
config,
latestModulesPath,
lib,
inputs,
pkgs,
profiles,
self,
...
}: let
psCfg = config.pub-solar;
in {
2022-10-05 10:02:28 +00:00
imports = [
# Include the results of the hardware scan.
./hardware-configuration.nix
./triton-vmtools.nix
2022-11-27 22:31:08 +00:00
./caddy.nix
2023-01-28 20:26:13 +00:00
./drone.nix
2022-11-27 22:31:08 +00:00
./keycloak.nix
./gitea.nix
./mailman.nix
2023-05-13 14:50:58 +00:00
./owncast.nix
2022-11-27 22:31:08 +00:00
2022-10-05 10:02:28 +00:00
profiles.base-user
profiles.users.root # make sure to configure ssh keys
profiles.users.barkeeper
"${latestModulesPath}/services/misc/gitea.nix"
2022-11-27 20:56:40 +00:00
];
disabledModules = [
"services/misc/gitea.nix"
2022-10-05 10:02:28 +00:00
];
config = {
# # #
# # # pub.solar options
# # #
pub-solar.core = {
2022-10-05 10:02:28 +00:00
disk-encryption-active = false;
iso-options.enable = true;
lite = true;
};
# Allow sudo without a password for the barkeeper user
security.sudo.extraRules = [
{
2023-01-28 22:51:33 +00:00
users = ["${psCfg.user.name}"];
2022-10-05 10:02:28 +00:00
commands = [
{
command = "ALL";
2023-01-28 22:51:33 +00:00
options = ["NOPASSWD"];
2022-10-05 10:02:28 +00:00
}
];
}
];
# Override nix.conf for more agressive garbage collection
nix.extraOptions = lib.mkForce ''
min-free = 536870912
keep-outputs = false
keep-derivations = false
fallback = true
'';
# Machine user for CI pipelines
2023-01-28 22:27:21 +00:00
users.users.hakkonaut = {
description = "CI and automation user";
home = "/var/nix/iso-cache";
useDefaultShell = true;
uid = 998;
2023-01-28 22:27:21 +00:00
group = "hakkonaut";
isSystemUser = true;
openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGP5MvCwNRtCcP1pSDrn0XZTNlpOqYnjHDm9/OI4hECW hakkonaut@flora-6"
];
2023-01-28 22:27:21 +00:00
};
2023-01-28 22:51:33 +00:00
users.groups.hakkonaut = {};
2023-01-28 22:27:21 +00:00
2022-10-05 10:02:28 +00:00
# # #
# # # Triton host specific options
# # # DO NOT ALTER below this line, changes might render system unbootable
# # #
# Use the systemd-boot EFI boot loader.
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
# Force getting the hostname from cloud-init
networking.hostName = lib.mkDefault "";
# Set your time zone.
time.timeZone = "Europe/Berlin";
# Select internationalisation properties.
console = {
font = "Lat2-Terminus16";
keyMap = "us";
};
# List packages installed in system profile. To search, run:
# $ nix search wget
environment.systemPackages = with pkgs; [
git
vim
wget
];
# Some programs need SUID wrappers, can be configured further or are
# started in user sessions.
# programs.mtr.enable = true;
# programs.gnupg.agent = {
# enable = true;
# enableSSHSupport = true;
# };
# List services that you want to enable:
services.cloud-init.enable = true;
services.cloud-init.ext4.enable = true;
services.cloud-init.network.enable = true;
# use the default NixOS cloud-init config, but add some SmartOS customization to it
environment.etc."cloud/cloud.cfg.d/90_smartos.cfg".text = ''
datasource_list: [ SmartOS ]
# Do not create the centos/ubuntu/debian user
users: [ ]
# mount second disk with label ephemeral0, gets formated by cloud-init
# this will fail to get added to /etc/fstab as it's read-only, but should
# mount at boot anyway
mounts:
- [ vdb, /data, auto, "defaults,nofail" ]
'';
# Enable the OpenSSH daemon.
services.openssh = {
enable = true;
settings = {
PasswordAuthentication = false;
PermitRootLogin = "no";
Macs = [
"hmac-sha2-512-etm@openssh.com"
"hmac-sha2-256-etm@openssh.com"
"umac-128-etm@openssh.com"
"hmac-sha2-512"
"hmac-sha2-256"
"umac-128@openssh.com"
];
};
2022-10-05 10:02:28 +00:00
};
# We manage the firewall with nix, too
# altough triton can also manage firewall rules via the triton fwrule subcommand
networking.firewall.enable = true;
# This value determines the NixOS release from which the default
# settings for stateful data, like file locations and database versions
# on your system were taken. Its perfectly fine and recommended to leave
# this value at the release version of the first install of this system.
# Before changing this value read the documentation for this option
# (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
system.stateVersion = "22.05"; # Did you read the comment?
};
}