Surface-Nixos/application-configuration.nix

45 lines
782 B
Nix
Raw Normal View History

2024-01-29 23:07:13 -05:00
{ lib, pkgs, ... }:
{
users.users.caleb = {
packages = with pkgs;
[
## apps
firefox
kate
qalculate-qt
keepassxc
libsForQt5.krdc
libreoffice-qt
isoimagewriter
qdirstat
signal-desktop
monero-gui
tor-browser-bundle-bin
yubikey-manager-qt
2024-02-05 16:19:18 -05:00
gparted
2024-02-29 19:19:49 -05:00
hashcat
2024-01-29 23:07:13 -05:00
##flatpak
flatpak
gnome.gnome-software
2024-01-29 23:07:13 -05:00
];
};
environment.systemPackages = with pkgs; [
openjdk8
];
# install Steam
programs.steam = {
enable = true;
remotePlay.openFirewall = true;
dedicatedServer.openFirewall = true;
};
# yubikey
services.pcscd.enable = true;
# flatpak for bluebubbles client
services.flatpak.enable = true;
2024-01-29 23:07:13 -05:00
}