From 799d93626dc0535d12548683bffaa849ad2c536f Mon Sep 17 00:00:00 2001 From: Silas Schöffel Date: Tue, 29 Oct 2024 22:22:43 +0100 Subject: hosts: add hpserver --- hosts/hpserver.nix | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 hosts/hpserver.nix (limited to 'hosts') diff --git a/hosts/hpserver.nix b/hosts/hpserver.nix new file mode 100644 index 0000000..47d3e25 --- /dev/null +++ b/hosts/hpserver.nix @@ -0,0 +1,19 @@ +{...}: { + role.sils = "workstation"; + sils = { + disks.disk = "/dev/disk/by-id/wwn-0x600508b1001c0d733397035f990e3942"; + meta = { + globalDataDir = "/srv"; + hostname = "hpserver"; + system = "x86_64-linux"; + }; + }; + nixpkgs.config.permittedInsecurePackages = [ + "olm-3.2.16" + "python3.12-youtube-dl-2021.12.17" + ]; + nixpkgs.overlays = [(self: super: {utillinux = super.util-linux;})]; + + home-manager.backupFileExtension = "backup"; + boot.initrd.availableKernelModules = ["ehci_pci" "ata_piix" "uhci_hcd" "hpsa" "usb_storage" "usbhid" "sd_mod"]; +} -- cgit 1.4.1