dotfiles/hosts/thinkpad/desktop.nix

30 lines
401 B
Nix
Raw Permalink 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
2025-01-11 12:03:31 +01:00
ungoogled-chromium
2024-04-28 11:35:35 +02:00
];
fonts.packages = with pkgs; [
(nerdfonts.override { fonts = [ "JetBrainsMono" ]; })
];
home-manager.backupFileExtension = "backup";
2024-04-28 11:35:35 +02:00
}