Replace ren

This commit is contained in:
Maxiem Geldhof 2025-10-31 16:29:03 +01:00
parent 48143906d5
commit 731583bcd5
6 changed files with 74 additions and 10 deletions

View file

@ -26,11 +26,14 @@
macbook = import ./systems/macbook/macbook.nix inputs;
selene = import ./systems/selene/system.nix inputs;
ren = import ./systems/ren/system.nix inputs;
in
{
# Build darwin flake using:
# $ darwin-rebuild build --flake .#Maxiems-MacBook-Pro
darwinConfigurations."Maxiems-MacBook-Pro" = macbook;
nixosConfigurations.selene = selene;
nixosConfigurations.ren = ren;
};
}

View file

@ -1,9 +0,0 @@
age-encryption.org/v1
-> ssh-ed25519 M7OTMg Hkh55d8H9zcKmJdDIU1B5MAwd/5SO3t82kXwz6HhTCM
ezDoDh7C8lp3EplRKMELvFgB7boUcDqy5ZL9YZ4Sbfk
-> ssh-ed25519 CJLJQg VWtzsyADFT/AdqigUILj5IJiZATIiuLF6/aSp5vqyyI
hA5J4cRSCKMANvlxSw1gvHSeOz1fr98PKZmLbT19Bks
--- 9VDB4Q2hkMFs1n5wwUDgLhKoBETEerbyJvlilu9VeTU
ïê†ðdYWÛL.¤üØX©ïms%
8½@‘ì±
6NòjÙiõºÏ<EFBFBD>ÿ]ÏuþÅjÔ»s¶'ôÚ<ãM—oâY+`¥Ëqþ(UÐÏ

View file

@ -1 +0,0 @@
wvTFERFXOPcgziLtLtfF3LGv5zmBWikCy/yLRwSuxWA=

14
systems/ren/hardware.nix Normal file
View file

@ -0,0 +1,14 @@
{ modulesPath, ... }:
{
imports = [ (modulesPath + "/profiles/qemu-guest.nix") ];
boot.loader.grub = {
efiSupport = true;
efiInstallAsRemovable = true;
device = "nodev";
};
fileSystems."/boot" = { device = "/dev/disk/by-uuid/0683-2D32"; fsType = "vfat"; };
boot.initrd.availableKernelModules = [ "ata_piix" "uhci_hcd" "xen_blkfront" "vmw_pvscsi" ];
boot.initrd.kernelModules = [ "nvme" ];
fileSystems."/" = { device = "/dev/sda1"; fsType = "ext4"; };
system.stateVersion = "23.11";
}

31
systems/ren/system.nix Normal file
View file

@ -0,0 +1,31 @@
{
agenix,
jellyfin-exporter,
nixpkgs,
self,
...
}:
let
system = "x86_64-linux";
in
nixpkgs.lib.nixosSystem {
system = system;
specialArgs = {
# This selects the package for the current system and passes it
exporter-pkg = jellyfin-exporter.packages.${system}.default;
system = system;
};
modules = [
{
boot.tmp.cleanOnBoot = true;
zramSwap.enable = true;
networking.hostName = "Ren";
networking.domain = "";
services.openssh.enable = true;
}
./users.nix
./hardware.nix
agenix.nixosModules.default
];
}

26
systems/ren/users.nix Normal file
View file

@ -0,0 +1,26 @@
{
users.users.ren = {
isNormalUser = true;
home = "/home/ren";
hashedPassword = "$y$j9T$KjOwguW/7P9GvbNg6Yy.k/$8xf3aqnJ909HSjxtpe854RKdiXiPpbOLt.aiuJSfeC0";
openssh.authorizedKeys.keys = [
(builtins.readFile ../../keys/hetzner.pub)
(builtins.readFile ../../keys/asus.pub)
(builtins.readFile ../../keys/macbook.pub)
];
extraGroups = [
"wheel"
"networkmanager"
];
};
age.secrets.hetzner-key = {
file = ../../keys/hetzner.priv;
owner = "ren";
};
users.users.root.openssh.authorizedKeys.keys = [
(builtins.readFile ../../keys/hetzner.pub)
];
}