more apps

This commit is contained in:
Julian 2022-12-18 22:13:43 -08:00
parent f757fe6a11
commit 23d6e56cea

View file

@ -32,13 +32,6 @@
};
networking.hostName = "framework"; # Define your hostname.
# networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
# Configure network proxy if necessary
# networking.proxy.default = "http://user:password@proxy:port/";
# networking.proxy.noProxy = "127.0.0.1,localhost,internal.domain";
# Enable networking
networking.networkmanager.enable = true;
# Set your time zone.
@ -59,7 +52,7 @@
LC_TIME = "en_US.UTF-8";
};
# Enable the X11 windowing system.
# Services
services.xserver.enable = true;
# Enable the GNOME Desktop Environment.
@ -102,7 +95,10 @@
steam
vmware-horizon-client
kleopatra
pinentry
arc-theme
zoom
slack
];
};
@ -138,6 +134,15 @@
libgdiplus
];
# GNUPG Stuff
services.pcscd.enable = true;
programs.gnupg.agent = {
enable = true;
pinentryFlavor = "gnome3";
enableSSHSupport = true;
};
# Some programs need SUID wrappers, can be configured further or are
# started in user sessions.
# programs.mtr.enable = true;
@ -151,18 +156,6 @@
# Enable the OpenSSH daemon.
services.openssh.enable = true;
# Open ports in the firewall.
# networking.firewall.allowedTCPPorts = [ ... ];
# networking.firewall.allowedUDPPorts = [ ... ];
# Or disable the firewall altogether.
# networking.firewall.enable = false;
# This value determines the NixOS release from which the default
# settings for stateful data, like file locations and database versions
# on your system were taken. Its perfectly fine and recommended to leave
# this value at the release version of the first install of this system.
# Before changing this value read the documentation for this option
# (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
system.stateVersion = "22.11"; # Did you read the comment?
}