1
0
Fork 0

Working on cleaning up nas configuration

This commit is contained in:
Paul Hartman 2024-10-10 04:35:14 -05:00
parent b8d1df8873
commit 7f75a25289

View file

@ -6,7 +6,6 @@
{
nix = {
# settings.auto-optimize-store = true;
nixPath = [
"nixpkgs=/nix/var/nix/profiles/per-user/root/channels/nixos"
"nixos-config=/home/paul/.nixos/hosts/nas/configuration.nix"
@ -112,10 +111,6 @@
};
};
# 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;
@ -157,12 +152,9 @@
# List packages installed in system profile. To search, run:
# $ nix search wget
environment.systemPackages = with pkgs; [
# vim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default.
# wget
micro
micro
docker-compose
htop
intel-gpu-tools
iotop
lm_sensors
ncdu
@ -176,16 +168,24 @@
# Some programs need SUID wrappers, can be configured further or are
# started in user sessions.
programs.mtr.enable = true;
programs.gnupg.agent = {
enable = true;
enableSSHSupport = true;
};
programs.git = {
enable = true;
# userName = "Paul Hartman";
# userEmail = "paul.hartman@astaluk.com";
programs = {
mtr.enable = true;
gnupg.agent = {
enable = true;
enableSSHSupport = true;
};
git.enable = true;
};
# programs.mtr.enable = true;
# programs.gnupg.agent = {
# enable = true;
# enableSSHSupport = true;
# };
# programs.git = {
# enable = true;
# # userName = "Paul Hartman";
# # userEmail = "paul.hartman@astaluk.com";
# };
# List services that you want to enable:
services = {
openssh.enable = true;