dotfiles/hosts/thinkpad/desktop.nix

28 lines
377 B
Nix
Raw Normal View History

2024-04-28 11:35:35 +02:00
{ config, pkgs, ... }:
2024-08-29 18:25:03 +02:00
2024-04-28 11:35:35 +02:00
{
environment.systemPackages = with pkgs; [
btop
nitrogen
ranger
neofetch
cava
bluetuith
# for screcsotting
scrot
xclip
maim
# multimedia
feh
mpv
];
fonts.packages = with pkgs; [
(nerdfonts.override { fonts = [ "JetBrainsMono" ]; })
];
home-manager.backupFileExtension = "backup";
2024-04-28 11:35:35 +02:00
}