diff --git a/hosts/hakase/hardware-configuration.nix b/hosts/hakase/hardware-configuration.nix index 51e8bb7..aaae6c2 100644 --- a/hosts/hakase/hardware-configuration.nix +++ b/hosts/hakase/hardware-configuration.nix @@ -8,19 +8,19 @@ [ (modulesPath + "/installer/scan/not-detected.nix") ]; - boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" "ahci" "usbhid" ]; + boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" "ahci" "usbhid" "usb_storage" "sd_mod" ]; boot.initrd.kernelModules = [ ]; boot.kernelModules = [ "kvm-amd" ]; boot.extraModulePackages = [ ]; fileSystems."/" = - { device = "/dev/disk/by-uuid/9f701bae-3392-4927-b27d-a905dd67edab"; + { device = "/dev/disk/by-uuid/43a2db2f-a691-4094-b4c7-11853627de39"; fsType = "btrfs"; options = [ "subvol=@" ]; }; fileSystems."/boot" = - { device = "/dev/disk/by-uuid/894C-F998"; + { device = "/dev/disk/by-uuid/C4BB-A8B7"; fsType = "vfat"; options = [ "fmask=0077" "dmask=0077" ]; }; diff --git a/hosts/vanilla/configuration.nix b/hosts/vanilla/configuration.nix index ce35108..f9a10b0 100644 --- a/hosts/vanilla/configuration.nix +++ b/hosts/vanilla/configuration.nix @@ -57,6 +57,11 @@ pulse.enable = true; }; + hardware.bluetooth.enable = true; + services = { + blueman.enable = true; + }; + # Enable touchpad support (enabled default in most desktopManager). # services.libinput.enable = true; @@ -75,10 +80,14 @@ # You can use https://search.nixos.org/ to find more packages (and options). environment.systemPackages = with pkgs; [ inputs.nixovim.packages.${system}.full + # linux-firmware vim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default. wget ]; + hardware.firmware = [ + pkgs.linux-firmware + ]; # Some programs need SUID wrappers, can be configured further or are # started in user sessions. # programs.mtr.enable = true; diff --git a/modules/default/remote.nix b/modules/default/remote.nix index efd2ab2..75b5514 100644 --- a/modules/default/remote.nix +++ b/modules/default/remote.nix @@ -1,6 +1,6 @@ { imports = [ - ../../packages/moondeck-buddy/appimage.nix +# ../../packages/moondeck-buddy/appimage.nix ../../packages/sunshine/default.nix ]; } diff --git a/modules/home/remote.nix b/modules/home/remote.nix index efd2ab2..ad1bb53 100644 --- a/modules/home/remote.nix +++ b/modules/home/remote.nix @@ -1,6 +1,6 @@ { imports = [ - ../../packages/moondeck-buddy/appimage.nix + # ../../packages/moondeck-buddy/appimage.nix ../../packages/sunshine/default.nix ]; }