]> Skullheadx's Git Forge - nixos.git/commitdiff
add exfat support
authorSkullheadx <admonty1@protonmail.com>
Sat, 23 May 2026 22:54:08 +0000 (18:54 -0400)
committerSkullheadx <admonty1@protonmail.com>
Sat, 23 May 2026 22:54:08 +0000 (18:54 -0400)
audio.nix
configuration.nix

index 727c8e29301556eccf20397821df6a79c91ff629..f146189ceb805efe83ea2698e21fbe46e3a04a9e 100644 (file)
--- a/audio.nix
+++ b/audio.nix
@@ -1,6 +1,8 @@
-{ config, pkgs, ... }:
 {
-
+  config,
+  pkgs,
+  ...
+}: {
   services.pipewire = {
     enable = true;
     audio.enable = true;
@@ -21,7 +23,6 @@
 
       ".config/rmpc/config.ron".source = ./dotfiles/rmpc/config.ron;
       ".config/rmpc/themes/theme.ron".source = ./dotfiles/rmpc/themes/theme.ron;
-
     };
     packages = with pkgs; [
       mpc
 
   systemd.user.services.mpd = {
     description = "Music Player Daemon";
-    wantedBy = [ "default.target" ];
+    wantedBy = ["default.target"];
     serviceConfig = {
       ExecStart = "${pkgs.mpd}/bin/mpd --no-daemon /home/andrew/.config/mpd/mpd.conf";
       Restart = "on-failure";
     };
   };
-
 }
index 6ea890e7ef1ca4ce740843ef6fb865b19f7fb592..edda4659738d311bc8ee0a9691e3d882309235c9 100644 (file)
@@ -3,8 +3,7 @@
   pkgs,
   inputs,
   ...
-}:
-{
+}: {
   imports = [
     ./hardware-configuration.nix
     ./lockscreen.nix
@@ -19,6 +18,8 @@
   boot.loader.systemd-boot.enable = true;
   boot.loader.efi.canTouchEfiVariables = true;
 
+  boot.supportedFilesystems = ["exfat"];
+
   # Use latest kernel.
   boot.kernelPackages = pkgs.linuxPackages_latest;
 
@@ -77,7 +78,6 @@
       url = {
         "git@github.com:".insteadOf = "https://github.com/";
       };
-
     };
   };