Files
nix/modules/software/utilities/system.nix
2026-03-05 21:53:02 -06:00

24 lines
419 B
Nix

{ ... }: {
den.aspects.system-utils = {
nixos = { pkgs, ... }: {
environment.systemPackages = with pkgs; [
gnome-boxes
pulseaudioFull
firmware-updater
];
users.users.bug.packages = with pkgs; [
mission-center
baobab
fastfetch
];
programs = {
ydotool.enable = true;
virt-manager.enable = true;
};
};
};
}