Emden no longer exists. I'm moving and have stripped the machine for parts. Let's yeet its config too.
-14
packetmix/systems/default.nix
-14
packetmix/systems/default.nix
···
26
26
"minion@redhead:x86_64-linux" = config.homes."packetmix-minion@redhead:x86_64-linux";
27
27
};
28
28
};
29
-
config.systems.nixos."packetmix-emden" = {
30
-
pkgs = nixpkgs.x86_64-linux;
31
-
ingredients = [
32
-
"javelin"
33
-
"personal"
34
-
];
35
-
args = {
36
-
system = "x86_64-linux";
37
-
project = config;
38
-
};
39
-
homes = {
40
-
"minion:x86_64-linux" = config.homes."packetmix-minion:x86_64-linux";
41
-
};
42
-
};
43
29
config.systems.nixos."packetmix-marbled" = {
44
30
pkgs = nixpkgs.x86_64-linux;
45
31
ingredients = [
-58
packetmix/systems/emden/hardware-configuration.nix
-58
packetmix/systems/emden/hardware-configuration.nix
···
1
-
# SPDX-FileCopyrightText: 2025 FreshlyBakedCake
2
-
#
3
-
# SPDX-License-Identifier: MIT
4
-
5
-
{
6
-
config,
7
-
lib,
8
-
modulesPath,
9
-
...
10
-
}:
11
-
12
-
{
13
-
imports = [
14
-
(modulesPath + "/installer/scan/not-detected.nix")
15
-
];
16
-
17
-
boot.initrd.availableKernelModules = [
18
-
"nvme"
19
-
"xhci_pci"
20
-
"ahci"
21
-
"usb_storage"
22
-
"usbhid"
23
-
"sd_mod"
24
-
"sr_mod"
25
-
];
26
-
boot.initrd.kernelModules = [ ];
27
-
boot.kernelModules = [ "kvm-amd" ];
28
-
boot.extraModulePackages = [ ];
29
-
30
-
fileSystems."/" = {
31
-
device = "/dev/disk/by-uuid/15cdef91-cf03-4fd9-897b-c468102a3c59";
32
-
fsType = "ext4";
33
-
};
34
-
35
-
fileSystems."/boot" = {
36
-
device = "/dev/disk/by-uuid/AE27-818A";
37
-
fsType = "vfat";
38
-
options = [
39
-
"fmask=0077"
40
-
"dmask=0077"
41
-
];
42
-
};
43
-
44
-
swapDevices = [
45
-
{ device = "/dev/disk/by-uuid/28336c37-2aef-4c77-82e9-5a681730398d"; }
46
-
];
47
-
48
-
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking
49
-
# (the default) this is the recommended approach. When using systemd-networkd it's
50
-
# still possible to use this option, but it's recommended to use it in conjunction
51
-
# with explicit per-interface declarations with `networking.interfaces.<interface>.useDHCP`.
52
-
networking.useDHCP = lib.mkDefault true;
53
-
# networking.interfaces.enp42s0.useDHCP = lib.mkDefault true;
54
-
# networking.interfaces.wlo1.useDHCP = lib.mkDefault true;
55
-
56
-
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
57
-
hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
58
-
}
-7
packetmix/systems/emden/hostname.nix
-7
packetmix/systems/emden/hostname.nix
History
1 round
0 comments
a.starrysky.fyi
submitted
#0
1 commit
expand
collapse
chore(emden)!: remove
Emden no longer exists. I'm moving and have stripped the machine for
parts. Let's yeet its config too.
expand 0 comments
pull request successfully merged