diff options
author | Freya Murphy <freya@freyacat.org> | 2025-06-21 22:33:33 -0400 |
---|---|---|
committer | Freya Murphy <freya@freyacat.org> | 2025-06-21 22:33:33 -0400 |
commit | b8c3752242ba2362a875dba555ff2527043bfe66 (patch) | |
tree | 8e6c0758546c262c22e04acc1913b0e1ac8ec5c9 /hosts/kaworu.nix | |
parent | run wl-clip-persist (diff) | |
download | dotfiles-nix-b8c3752242ba2362a875dba555ff2527043bfe66.tar.gz dotfiles-nix-b8c3752242ba2362a875dba555ff2527043bfe66.tar.bz2 dotfiles-nix-b8c3752242ba2362a875dba555ff2527043bfe66.zip |
move shiniji wireguard secretes to only shinji host (refactor hosts)
Diffstat (limited to 'hosts/kaworu.nix')
-rw-r--r-- | hosts/kaworu.nix | 74 |
1 files changed, 0 insertions, 74 deletions
diff --git a/hosts/kaworu.nix b/hosts/kaworu.nix deleted file mode 100644 index b481be0..0000000 --- a/hosts/kaworu.nix +++ /dev/null @@ -1,74 +0,0 @@ -# Kaworu -# System configuration for my desktop -{ - inputs, - options, - ... -}: -inputs.nixpkgs.lib.nixosSystem rec { - system = "x86_64-linux"; - specialArgs = {inherit inputs;}; - modules = [ - options - ../config - ../home - ../programs - ../system - { - # options - hostName = "kaworu"; - monitors = [ - { - name = "HDMI-A-1"; - scale = 1.0; - } - ]; - - # hardware - hardware.graphics.enable = true; - hardware.bluetooth.enable = true; - - # bootloader - boot.loader.systemd-boot.enable = true; - boot.loader.efi = { - canTouchEfiVariables = true; - efiSysMountPoint = "/boot/efi"; - }; - - # kernel modules - boot.initrd.availableKernelModules = [ - "xhci_pci" - "ahci" - "usb_storage" - "usbhid" - "sd_mod" - ]; - boot.initrd.kernelModules = []; - boot.kernelModules = ["kvm-amd"]; - boot.extraModulePackages = []; - - # firmware - hardware.enableRedistributableFirmware = true; - hardware.cpu.amd.updateMicrocode = true; - - # luks device - boot.initrd.luks.devices."root".device = "/dev/disk/by-uuid/89257280-202b-4565-b832-89f160d5e4e2"; - - # root - fileSystems."/" = { - device = "/dev/disk/by-uuid/4906f0dd-b036-40fc-9a3f-0d031dbc2513"; - fsType = "btrfs"; - }; - - # boot - fileSystems."/boot/efi" = { - device = "/dev/disk/by-uuid/099A-D668"; - fsType = "vfat"; - options = ["fmask=0022" "dmask=0022"]; - }; - - # swap - swapDevices = []; - } - ]; -} |