Working on cleaning up nas configuration
This commit is contained in:
parent
b8d1df8873
commit
7f75a25289
1 changed files with 18 additions and 18 deletions
|
@ -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"
|
||||
|
@ -111,10 +110,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;
|
||||
|
|
Loading…
Reference in a new issue