confix/hosts/buckwheat/home.nix

17 lines
260 B
Nix

# Buckwheat home.nix
{ config, lib, pkgs, inputs, user, ... }:
{
home.packages = with pkgs; [
mixxx
virt-manager
];
services = {
udiskie = {
enable = true;
automount = true;
notify = true;
tray = "auto";
};
};
}