-{ config, pkgs, ... }:
{
-
+ config,
+ pkgs,
+ ...
+}: {
services.pipewire = {
enable = true;
audio.enable = true;
".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";
};
};
-
}
pkgs,
inputs,
...
-}:
-{
+}: {
imports = [
./hardware-configuration.nix
./lockscreen.nix
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
+ boot.supportedFilesystems = ["exfat"];
+
# Use latest kernel.
boot.kernelPackages = pkgs.linuxPackages_latest;
url = {
"git@github.com:".insteadOf = "https://github.com/";
};
-
};
};