nix-git/modules/programs-gnome.nix

15 lines
220 B
Nix

{ config, pkgs, ... }:
{
imports = [
./file-roller.nix
];
users.users.yoda = {
packages = with pkgs; [
gnome-tweaks
dconf-editor
resources # Resource monitor / task manager
];
};
}