confix/hosts/buckwheat/home.nix

24 lines
402 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;
settings = {
program_options = {
udisks_version = 2;
};
icon_names.media = [
"media-optical"
];
};
};
};
}