diff --git a/nixos/hosts/base.nix b/nixos/hosts/base.nix index 313003a..05e57ee 100644 --- a/nixos/hosts/base.nix +++ b/nixos/hosts/base.nix @@ -118,9 +118,12 @@ }; }; - hardware.bluetooth = { - enable = true; - powerOnBoot = true; + hardware = { + bluetooth = { + enable = true; + powerOnBoot = true; + }; + opentabletdriver.enable = true; }; xdg.portal = { diff --git a/nixos/hosts/ioides/configuration.nix b/nixos/hosts/ioides/configuration.nix index 46162ec..5012354 100644 --- a/nixos/hosts/ioides/configuration.nix +++ b/nixos/hosts/ioides/configuration.nix @@ -24,6 +24,12 @@ fsType = "ext4"; neededForBoot = false; }; + # Big fucking thing + fileSystems."/mnt/rae2" = { + device = "/dev/disk/by-uuid/fbbcc72f-34af-425c-9151-ef8919a6ae07"; + fsType = "ext4"; + neededForBoot = false; + }; networking.hostName = "ioides"; diff --git a/nixos/packages.nix b/nixos/packages.nix index 64567b9..1476af7 100644 --- a/nixos/packages.nix +++ b/nixos/packages.nix @@ -106,5 +106,6 @@ soteria # Polkit authentication agent written in GTK designed to be used with any desktop environment temurin-jre-bin-23 # Eclipse Temurin, prebuilt OpenJDK binary temurin-jre-bin-8 # Eclipse Temurin, prebuilt OpenJDK binary + vlc # Cross-platform media player and streaming server ]; }