Files
nixos-config/home-manager/programs/programs.nix
2025-05-26 10:34:13 -07:00

80 lines
1.6 KiB
Nix

{ pkgs, ... }:
{
imports = [
./ghostty/ghostty.nix
./rofi/rofi.nix
];
home.packages = with pkgs; [
# # Adds the 'hello' command to your environment. It prints a friendly
# # "Hello, world!" when run.
# pkgs.hello
bambu-studio
blender
brave
jellyfin-media-player
kdePackages.bluedevil
kdePackages.bluez-qt
kdePackages.kate
kdePackages.kdeconnect-kde
kdePackages.oxygen-sounds
kdePackages.partitionmanager
# ladybird
libreoffice-still
librewolf
localsend
lutris-unwrapped
meld
melonDS
moonlight-qt
nestopia-ue
nix-ld
obsidian
pandoc
prismlauncher
protonplus
protonup-qt
#pwndbg
pwninit
pwntools
qFlipper
r2modman
remmina
signal-desktop
spice
steam
steamcmd
swww
vesktop
vlc
vscode
wireshark
yubikey-agent
sdrpp
sdrangel
# # It is sometimes useful to fine-tune packages, for example, by applying
# # overrides. You can do that directly here, just don't forget the
# # parentheses. Maybe you want to install Nerd Fonts with a limited number of
# # fonts?
# (pkgs.nerdfonts.override { fonts = [ "FantasqueSansMono" ]; })
# # You can also create simple shell scripts directly inside your
# # configuration. For example, this adds a command 'my-hello' to your
# # environment:
# (pkgs.writeShellScriptBin "my-hello" ''
# echo "Hello, ${config.home.username}!"
# '')
];
# environment.sessionVariables.NIXOS_OZONE_WL = "1";
programs.waybar = {
enable = true;
};
programs.wlogout = {
enable = true;
};
}