Surface-Nixos/application-configuration.nix

48 lines
848 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-01-29 23:07:13 -05:00
# FAF
jq
cabextract
];
};
environment.systemPackages = with pkgs; [
openjdk8
];
# Enable mullvad vpn
services.mullvad-vpn.package = pkgs.mullvad-vpn;
services.mullvad-vpn.enable = true;
# Enable tailscale
services.tailscale.enable = true;
# install Steam
programs.steam = {
enable = true;
remotePlay.openFirewall = true;
dedicatedServer.openFirewall = true;
};
# yubikey
services.pcscd.enable = true;
}