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