diff options
| author | Skullheadx <admonty1@protonmail.com> | 2026-05-23 18:54:08 -0400 |
|---|---|---|
| committer | Skullheadx <admonty1@protonmail.com> | 2026-05-23 18:54:08 -0400 |
| commit | 78bd281410915e2b9fa2d0da5d49daa5ea9987b4 (patch) | |
| tree | 68281dbd4c758643b6f3fbb5dbb64b90a957b98c | |
| parent | format (diff) | |
| download | nixos-78bd281410915e2b9fa2d0da5d49daa5ea9987b4.tar.gz nixos-78bd281410915e2b9fa2d0da5d49daa5ea9987b4.tar.bz2 nixos-78bd281410915e2b9fa2d0da5d49daa5ea9987b4.zip | |
add exfat support
Diffstat (limited to '')
| -rw-r--r-- | audio.nix | 10 | ||||
| -rw-r--r-- | configuration.nix | 6 |
2 files changed, 8 insertions, 8 deletions
@@ -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 @@ -31,11 +32,10 @@ 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"; }; }; - } diff --git a/configuration.nix b/configuration.nix index 6ea890e..edda465 100644 --- a/configuration.nix +++ b/configuration.nix @@ -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/"; }; - }; }; |
