mirror of
https://github.com/tomasriveral/nixos.git
synced 2026-08-11 18:18:37 +02:00
30 lines
831 B
Nix
30 lines
831 B
Nix
{self, ...}: {
|
|
flake.nixosModules.otherUtils =
|
|
# try to keep packages here at a minium. Preferably use a dedicated file
|
|
{
|
|
pkgs,
|
|
pkgs-unstable,
|
|
...
|
|
}: {
|
|
environment.systemPackages = with pkgs; [
|
|
gnome-calculator
|
|
snapshot
|
|
gnome-characters
|
|
#tree # shows dir in tree # we use eza now
|
|
brightnessctl # control brightness
|
|
powertop
|
|
fzf
|
|
bottom # Cross-platform graphical process/system monitor with a customizable interface
|
|
tomato-c # pomodoro timer
|
|
#hyprshot
|
|
mailcap
|
|
fuzzel
|
|
usbutils # used for lsusb
|
|
self.packages.${pkgs.system}.custom-tomato
|
|
self.packages.${pkgs.system}.custom-syllabes
|
|
pkgs-unstable.bitwarden-desktop
|
|
fluffychat # matrix client
|
|
];
|
|
};
|
|
}
|