From de21a55aa799606fef9da82a267a783aeccde2d0 Mon Sep 17 00:00:00 2001 From: 514fpv Date: Fri, 5 Jan 2024 00:35:10 +0800 Subject: [PATCH] feat(library): initial configuration --- spec/library/default.nix | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 spec/library/default.nix diff --git a/spec/library/default.nix b/spec/library/default.nix new file mode 100644 index 00000000..e69ec41d --- /dev/null +++ b/spec/library/default.nix @@ -0,0 +1,36 @@ +{ pkgs +, lib +, modulesPath +, ... }: { + faucet = { + id = "bc8036643fc24f04ab150ff6a38dcce7"; + auth.openssh.enable = true; + libvirt.enable = false; + io.bluetooth = false; + io.audio = false; + fs.esp.uuid = "00A5-929C"; + fs.type = "xfs"; + fs.store = "25b9f83f-7f6d-432f-a169-2985e5930401"; + fs.extPersist.enable = true; + fs.extPersist.device = "/dev/disk/by-uuid/ba3d0989-9f81-4ac0-b5a7-124c86835cfa"; + fs.extPersist.fsType = "ext4"; + }; + + networking.proxy = { + default = "socks5://192.168.1.253:1080"; + noProxy = "127.0.0.1,localhost,.localdomain"; + }; + + imports = lib.pipe ./. [ + builtins.readDir + (lib.filterAttrs (n: ty: ty == "regular" && n != "default.nix")) + (lib.mapAttrsToList (n: _: ./${n})) + ] ++ [ (modulesPath + "/profiles/qemu-guest.nix") ]; + + boot.initrd.availableKernelModules = [ "ata_piix" "uhci_hcd" "ahci" "virtio_pci" "sr_mod" "virtio_blk" ]; + boot.initrd.kernelModules = [ ]; + boot.kernelModules = [ "kvm-intel" ]; + boot.extraModulePackages = [ ]; + boot.kernelParams = [ "console=ttyS0,115200n8" ]; + environment.systemPackages = with pkgs; [ python3 ]; +}