diff --git a/home/crow/Michishirube.nix b/home/crow/Michishirube.nix deleted file mode 100644 index e8f3432..0000000 --- a/home/crow/Michishirube.nix +++ /dev/null @@ -1,5 +0,0 @@ -{lib, ...}: { - imports = [ - common/core - ]; -} diff --git a/home/crow/Nyx.nix b/home/crow/Nyx.nix deleted file mode 100644 index 129da9a..0000000 --- a/home/crow/Nyx.nix +++ /dev/null @@ -1,21 +0,0 @@ -{lib, ...}: { - imports = [ - common/core - common/optional/desktops/sway - common/optional/browsers/firefox.nix - common/optional/comms - common/optional/media - common/optional/gaming - ]; - - monitors = [ - { - name = "eDP-1"; - primary = true; - width = 2650; - height = 1440; - refreshRate = 60; - background = lib.custom.relativeToRoot "assets/wallpapers/kali_lol.jpg"; - } - ]; -} diff --git a/hosts/nixos/Michishirube/default.nix b/hosts/nixos/Michishirube/default.nix deleted file mode 100644 index a099bdb..0000000 --- a/hosts/nixos/Michishirube/default.nix +++ /dev/null @@ -1,54 +0,0 @@ -############################# -# # -# Michishirube - Lighthouse # -# # -############################# -{ - inputs, - lib, - pkgs, - ... -}: { - imports = lib.flatten [ - # Disks - inputs.disko.nixosModules.disko - (lib.custom.relativeToRoot "hosts/common/disks/btrfs-over-mbr-disk.nix") - { - _module.args = { - disk = "/dev/sda"; - withSwap = false; - swapSize = "0"; - }; - } - # Misc - - (map lib.custom.relativeToRoot [ - # Required configs - "hosts/common/core" - # Optional configs - ]) - ]; - - time.timeZone = "UTC"; # Have to declare because of srvos - - nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; - - hostSpec = { - hostName = "Michishirube"; - persistFolder = "/persist"; - isMinimal = true; - }; - - networking = { - networkmanager.enable = true; - enableIPv6 = false; - }; - - boot.loader = { - limine = { - enable = true; - biosSupport = true; - biosDevice = "/dev/sda"; - }; - }; -} diff --git a/hosts/nixos/Michishirube/hardware-configuration.nix b/hosts/nixos/Michishirube/hardware-configuration.nix deleted file mode 100644 index 908ec35..0000000 --- a/hosts/nixos/Michishirube/hardware-configuration.nix +++ /dev/null @@ -1,14 +0,0 @@ -# Do not modify this file! It was generated by ‘nixos-generate-config’ -# and may be overwritten by future invocations. Please make changes -# to /etc/nixos/configuration.nix instead. -{modulesPath, ...}: { - imports = [ - (modulesPath + "/installer/scan/not-detected.nix") - (modulesPath + "/profiles/qemu-guest.nix") - ]; - - boot.initrd.availableKernelModules = ["xhci_pci" "ahci" "usb_storage" "sd_mod" "virtio_pci" "virtio_scsi"]; - boot.initrd.kernelModules = []; - boot.kernelModules = []; - boot.extraModulePackages = []; -} diff --git a/hosts/nixos/Nyx/default.nix b/hosts/nixos/Nyx/default.nix deleted file mode 100644 index fc8f6ca..0000000 --- a/hosts/nixos/Nyx/default.nix +++ /dev/null @@ -1,65 +0,0 @@ -###################### -# # -# Nyx - Laptop # -# NixOS on X1 carbon # -# # -###################### -{ - inputs, - lib, - pkgs, - ... -}: { - imports = lib.flatten [ - # Hardware - inputs.hardware.nixosModules.lenovo-thinkpad-x1-6th-gen - ./hardware-configuration.nix - - # Disks - inputs.disko.nixosModules.disko - (lib.custom.relativeToRoot "hosts/common/disks/btrfs-disk.nix") - { - _module.args = { - disk = "/dev/sda"; - withSwap = true; - swapSize = "8"; - }; - } - - # Misc - - (map lib.custom.relativeToRoot [ - # Required configs - "hosts/common/core" - - # Optional configs - "hosts/common/optional/audio.nix" - "hosts/common/optional/bluetooth.nix" - "hosts/common/optional/pentesting.nix" - "hosts/common/optional/gaming.nix" - "hosts/common/optional/vbox.nix" - "hosts/common/optional/keyd.nix" - "hosts/common/optional/printing.nix" - ]) - ]; - - nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; - - hostSpec = { - hostName = "Nyx"; - persistFolder = "/persist"; - }; - - networking = { - networkmanager.enable = true; - modemmanager.enable = true; - enableIPv6 = false; - }; - - boot.loader = { - systemd-boot.enable = true; - efi = { - canTouchEfiVariables = true; - }; - }; -} diff --git a/hosts/nixos/Nyx/hardware-configuration.nix b/hosts/nixos/Nyx/hardware-configuration.nix deleted file mode 100644 index 2adfc82..0000000 --- a/hosts/nixos/Nyx/hardware-configuration.nix +++ /dev/null @@ -1,19 +0,0 @@ -# Do not modify this file! It was generated by ‘nixos-generate-config’ -# and may be overwritten by future invocations. Please make changes -# to /etc/nixos/configuration.nix instead. -{ - config, - lib, - pkgs, - modulesPath, - ... -}: { - imports = [ - (modulesPath + "/installer/scan/not-detected.nix") - ]; - - boot.initrd.availableKernelModules = ["xhci_pci" "ahci" "usb_storage" "sd_mod"]; - boot.initrd.kernelModules = []; - boot.kernelModules = ["kvm-intel"]; - boot.extraModulePackages = []; -}