mirror of
https://github.com/tomasriveral/nixos.git
synced 2026-08-12 10:30:44 +02:00
29 lines
849 B
Nix
29 lines
849 B
Nix
{ ... }: {
|
|
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
|
|
(pkgs.callPackage ../../modules/scripts/tomato.nix {})
|
|
(pkgs.callPackage ../../modules/scripts/syllabes.nix {}) # python script to get number of syllabes in french
|
|
pkgs-unstable.bitwarden-desktop
|
|
fluffychat # matrix client
|
|
];
|
|
};
|
|
}
|