From 9d63509ad91349fc85e2806b037dc9d743b6ad5e Mon Sep 17 00:00:00 2001 From: Ahwx Date: Sat, 26 Jul 2025 20:07:16 +0200 Subject: [PATCH] chore: remove rests of desktop and vm --- hosts/desktop/default.nix | 15 --------- hosts/desktop/hardware-configuration.nix | 41 ------------------------ hosts/vm/default.nix | 36 --------------------- hosts/vm/hardware-configuration.nix | 31 ------------------ 4 files changed, 123 deletions(-) delete mode 100644 hosts/desktop/default.nix delete mode 100644 hosts/desktop/hardware-configuration.nix delete mode 100644 hosts/vm/default.nix delete mode 100644 hosts/vm/hardware-configuration.nix diff --git a/hosts/desktop/default.nix b/hosts/desktop/default.nix deleted file mode 100644 index 555e686..0000000 --- a/hosts/desktop/default.nix +++ /dev/null @@ -1,15 +0,0 @@ -{ pkgs, ... }: -{ - imports = [ - ./hardware-configuration.nix - ./../../modules/core - ]; - - nixpkgs.config.permittedInsecurePackages = [ - "jitsi-meet-1.0.8043" - "olm-3.2.16" - ]; - - liv.desktop.enable = true; - liv.gui.enable = true; -} diff --git a/hosts/desktop/hardware-configuration.nix b/hosts/desktop/hardware-configuration.nix deleted file mode 100644 index 3cf9604..0000000 --- a/hosts/desktop/hardware-configuration.nix +++ /dev/null @@ -1,41 +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" "usbhid" "usb_storage" "sd_mod" ]; - boot.initrd.kernelModules = [ ]; - boot.kernelModules = [ "kvm-intel" ]; - boot.extraModulePackages = [ ]; - - fileSystems."/" = - { device = "/dev/disk/by-uuid/6b518d54-a144-42fe-b500-b6651038bbcc"; - fsType = "ext4"; - }; - - fileSystems."/boot" = - { device = "/dev/disk/by-uuid/D1A5-9B92"; - fsType = "vfat"; - }; - - swapDevices = - [ { device = "/dev/disk/by-uuid/2d69abc2-3d44-481b-ada8-b436c2b9c8c2"; } - ]; - - # Enables DHCP on each ethernet and wireless interface. In case of scripted networking - # (the default) this is the recommended approach. When using systemd-networkd it's - # still possible to use this option, but it's recommended to use it in conjunction - # with explicit per-interface declarations with `networking.interfaces..useDHCP`. - networking.useDHCP = lib.mkDefault true; - # networking.interfaces.enp0s31f6.useDHCP = lib.mkDefault true; - # networking.interfaces.enp1s0.useDHCP = lib.mkDefault true; - - nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; - powerManagement.cpuFreqGovernor = lib.mkDefault "powersave"; - hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware; -} diff --git a/hosts/vm/default.nix b/hosts/vm/default.nix deleted file mode 100644 index b0a72a8..0000000 --- a/hosts/vm/default.nix +++ /dev/null @@ -1,36 +0,0 @@ -{ pkgs, config, lib, ... }: -{ - imports = [ - ./hardware-configuration.nix - ./../../modules/core - ]; - - nixpkgs.config.permittedInsecurePackages = [ - "jitsi-meet-1.0.8043" - "olm-3.2.16" - ]; - - - # kvm/qemu doesn't use UEFI firmware mode by default. - # so we force-override the setting here - # and configure GRUB instead. - boot.loader = { - systemd-boot.enable = lib.mkForce false; - grub = { - enable = true; - device = "/dev/vda"; - useOSProber = false; - }; - }; - - # allow local remote access to make it easier to toy around with the system - services.openssh = { - enable = true; - ports = [22]; - settings = { - # PasswordAuthentication = lib.mkOverride true; - AllowUsers = null; - # PermitRootLogin = "yes"; - }; - }; -} diff --git a/hosts/vm/hardware-configuration.nix b/hosts/vm/hardware-configuration.nix deleted file mode 100644 index 7cd128a..0000000 --- a/hosts/vm/hardware-configuration.nix +++ /dev/null @@ -1,31 +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 + "/profiles/qemu-guest.nix") - ]; - - boot.initrd.availableKernelModules = [ "ahci" "xhci_pci" "virtio_pci" "sr_mod" "virtio_blk" ]; - boot.initrd.kernelModules = [ ]; - boot.kernelModules = [ "kvm-intel" ]; - boot.extraModulePackages = [ ]; - - fileSystems."/" = - { device = "/dev/disk/by-uuid/631775ef-6851-4fe7-997f-189372f87437"; - fsType = "ext4"; - }; - - swapDevices = [ ]; - - # Enables DHCP on each ethernet and wireless interface. In case of scripted networking - # (the default) this is the recommended approach. When using systemd-networkd it's - # still possible to use this option, but it's recommended to use it in conjunction - # with explicit per-interface declarations with `networking.interfaces..useDHCP`. - networking.useDHCP = lib.mkDefault true; - # networking.interfaces.enp1s0.useDHCP = lib.mkDefault true; - - nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; -}