config-perso/hive.nix

163 lines
4.3 KiB
Nix
Raw Normal View History

2024-05-14 19:21:19 +02:00
let
2024-03-13 11:11:16 +01:00
mods = import ./modules;
users = import ./users;
2024-06-01 00:28:17 +02:00
sources = import ./npins;
2024-05-14 19:21:19 +02:00
in
{
2024-06-01 00:28:17 +02:00
meta.nixpkgs = import sources.nixpkgs { };
2024-03-13 11:11:16 +01:00
meta.specialArgs = {
2024-06-01 00:28:17 +02:00
inherit mods users sources;
2024-03-13 11:11:16 +01:00
};
2024-05-14 19:21:19 +02:00
defaults =
{ name, pkgs, ... }:
{
2024-06-01 00:28:17 +02:00
imports = [
"${sources.home-manager}/nixos"
"${sources.agenix}/modules/age.nix"
];
2024-05-14 19:21:19 +02:00
boot.tmp.useTmpfs = true;
networking.hostName = name;
2024-05-31 14:51:59 +02:00
nix.package = pkgs.lix;
2024-05-14 19:21:19 +02:00
};
2024-03-18 20:26:22 +01:00
2024-05-14 19:21:19 +02:00
kat-probook =
{
name,
nodes,
users,
...
}:
{
deployment.allowLocalDeployment = true;
imports = [
./machines/kat-probook/configuration.nix
(users.root { ssh = false; })
users.catvayor
];
nix.settings.trusted-users = [
"root"
"@wheel"
];
};
2024-03-16 20:03:01 +01:00
2024-05-14 19:21:19 +02:00
kat-r86s =
{ name, nodes, ... }:
{
deployment.targetHost = "r86s.kat";
imports = [
./machines/kat-r86s/configuration.nix
(users.root { ssh = true; })
];
};
2024-03-18 20:26:22 +01:00
2024-05-14 19:21:19 +02:00
kat-test =
{ name, nodes, ... }:
{
deployment = {
allowLocalDeployment = true;
targetHost = "test.kat";
};
2024-03-18 20:26:22 +01:00
2024-05-14 19:21:19 +02:00
imports = [
./machines/kat-test/configuration.nix
(users.root { ssh = true; })
users.catvayor
];
home-manager.users.catvayor = {
imports = [ mods.home.mail ];
};
2024-03-18 20:26:22 +01:00
};
2024-05-14 19:21:19 +02:00
kat-virt =
{ name, nodes, ... }:
{
deployment.targetHost = "virt.kat";
imports = [
./machines/kat-virt/configuration.nix
(users.root { ssh = true; })
];
users.users.root.openssh.authorizedKeys.keys = [
"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCvi5VUsDrwS4XqQQfFFIx1JoRDPVdtChUQWqKFbPFtP8gH51woXiKtKRbDebL0z/EmkdYKxxIkzixHTR5xQXjo8JiFZbwldZi5IvMr3x//ad9sVyOhmbRx1DXLKjyOdWyo+w0vORvbEDu2lHktfSvhHGrvUHfFc3EY+cAl7IImgGEeGNPruAuNkN90Lth9QgwJVsdOEs9j7hwwKtpfMMETL5tkW34Nu7io03+SaPxwi2xLuWTdTklfZ7GWYtG2w/hFkzDbkW97rp5dxB1HO58cPqyRlqyfhZFpiUmWlyuMba3Tip6JarCa52IpFffEIDR0CSeh5CFPoeppo/TPDiXDie370TjjQpxJiG+9PobBhmChH5FmQ/lksffI/WimqpVO7Ixf5cYiHN5Z0mgJgZsXwI3YPICQLA8ebSKHA8+mdmkunDmCBRaBj1qEgkp/UoYqXT6BjBm07nOsnL+3SG/yfx4fLotgWtdm2mkjEAG+OGVR7G3Vk/POxn0EqX7Z+gU= sylvain@idefix"
];
2024-03-22 14:24:31 +01:00
};
2024-03-18 20:26:22 +01:00
2024-05-14 19:21:19 +02:00
kat-runner =
{ name, nodes, ... }:
{
deployment.targetHost = "runner.kat";
2024-05-06 15:00:43 +02:00
2024-05-14 19:21:19 +02:00
imports = [
./machines/kat-runner/configuration.nix
(users.root { ssh = true; })
];
};
2024-05-06 15:00:43 +02:00
2024-05-14 19:21:19 +02:00
kat-iso =
2024-06-01 00:28:17 +02:00
{
name,
pkgs,
modulesPath,
...
}:
2024-05-14 19:21:19 +02:00
{
deployment = {
allowLocalDeployment = false;
targetHost = null;
};
2024-03-16 20:03:01 +01:00
2024-05-14 19:21:19 +02:00
imports = [
2024-06-01 00:28:17 +02:00
(modulesPath + "/installer/cd-dvd/installation-cd-minimal-new-kernel-no-zfs.nix")
2024-05-14 19:21:19 +02:00
(users.root { ssh = true; })
];
2024-03-16 20:03:01 +01:00
2024-05-14 19:21:19 +02:00
networking = {
networkmanager.enable = true;
wireless.enable = false;
};
console.keyMap = "fr";
environment.systemPackages = with pkgs; [
perl
git
];
boot.supportedFilesystems = [ "bcachefs" ];
programs.zsh.enable = true;
services.openssh.enable = true;
services.qemuGuest.enable = true;
boot.kernelParams = [ "console=ttyS0" ];
environment.etc = {
"config_base.nix" = {
mode = "0444";
text = ''
{ config, lib, pkgs, ... }: {
imports = [ ./hardware-configuration.nix ];
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
boot.supportedFilesystems = [ "bcachefs" ];
boot.kernelPackages = pkgs.linuxPackages_latest;
# networking.networkmanager.enable = true;
networking.hostName = "kat-undefined";
time.timeZone = "Europe/Paris";
i18n.defaultLocale = "en_US.UTF-8";
console = {
font = "Lat2-Terminus16";
keyMap = "fr";
};
#services.netbird.enable = true;
services.qemuGuest.enable = true;
services.openssh.enable = true;
users.users.root.openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIAA16foz+XzwKwyIR4wFgNIAE3Y7AfXyEsUZFVVz8Rie catvayor@katvayor"
];
system.stateVersion = "23.11";
}
'';
};
2024-03-18 20:26:22 +01:00
};
};
2024-03-12 17:26:16 +01:00
}