nix-git/modules/programs-gnome.nix

11 lines
178 B
Nix
Raw Normal View History

2025-01-02 23:28:12 +01:00
{ config, pkgs, ... }:
{
users.users.yoda = {
packages = with pkgs; [
gnome-tweaks
dconf-editor
resources # Resource monitor / task manager
];
};
}