2025-01-02 23:28:12 +01:00
|
|
|
{ config, pkgs, ... }:
|
|
|
|
{
|
2025-01-03 11:52:16 +01:00
|
|
|
imports = [
|
2025-01-03 15:48:13 +01:00
|
|
|
./file-roller.nix # Archive manager: Compress and decompress
|
|
|
|
./thunderbird.nix # email
|
|
|
|
./ghostwriter.nix # Markdown editor
|
2025-01-03 17:29:08 +01:00
|
|
|
#./gnome-terminal.nix # Terminal emulator.
|
|
|
|
./blackbox.nix # Terminal emulator.
|
2025-01-03 11:52:16 +01:00
|
|
|
];
|
|
|
|
|
2025-01-02 23:28:12 +01:00
|
|
|
users.users.yoda = {
|
|
|
|
packages = with pkgs; [
|
|
|
|
gnome-tweaks
|
|
|
|
dconf-editor
|
|
|
|
resources # Resource monitor / task manager
|
2025-01-03 15:48:13 +01:00
|
|
|
|
|
|
|
gnome-disk-utility # Partition and format disks. Mount disk images (.ISO)
|
|
|
|
gnome-calculator # Calculator
|
|
|
|
epiphany # Web browser
|
|
|
|
gnome-solanum # Pomodoro timer
|
|
|
|
transmission_4-gtk # BitTorrent client
|
|
|
|
pdfarranger # PDF files: Split, merge, rotate, rearrange, export selected pages
|
|
|
|
seahorse # Encryption keys, encryped files
|
|
|
|
#unstable.fractal # Matrix chat client.
|
|
|
|
tuba # Fediverse client.
|
|
|
|
|
|
|
|
gnome-contacts # Contacts
|
|
|
|
gnome-calendar # Calendar
|
2025-01-02 23:28:12 +01:00
|
|
|
];
|
|
|
|
};
|
|
|
|
}
|