nix-git/modules/programs-gnome.nix

15 lines
220 B
Nix
Raw Normal View History

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