summaryrefslogtreecommitdiff
path: root/modules/examples
diff options
context:
space:
mode:
authorMichael Hoang <Enzime@users.noreply.github.com>2024-11-16 14:42:50 +0000
committerGitHub <noreply@github.com>2024-11-16 14:42:50 +0000
commit2bcef10f4319f34ddebadb5f37eaa81ca2510730 (patch)
tree64928f05e87848dddf2d6530a5a470ec19f49f65 /modules/examples
parentf86f158efd4bab8dce3e207e4621f1df3a760b7a (diff)
parentec5fce6061c26095f6de3a9cb9398171aa3b8c86 (diff)
Merge pull request #1164 from Enzime/push-yyusnrnkwkxu
nix-daemon: enable by default
Diffstat (limited to 'modules/examples')
-rw-r--r--modules/examples/flake/flake.nix4
-rw-r--r--modules/examples/hydra.nix2
-rw-r--r--modules/examples/lnl.nix1
-rw-r--r--modules/examples/simple.nix4
4 files changed, 0 insertions, 11 deletions
diff --git a/modules/examples/flake/flake.nix b/modules/examples/flake/flake.nix
index bd733bd..dbcc420 100644
--- a/modules/examples/flake/flake.nix
+++ b/modules/examples/flake/flake.nix
@@ -16,10 +16,6 @@
[ pkgs.vim
];
- # Auto upgrade nix package and the daemon service.
- services.nix-daemon.enable = true;
- # nix.package = pkgs.nix;
-
# Necessary for using flakes on this system.
nix.settings.experimental-features = "nix-command flakes";
diff --git a/modules/examples/hydra.nix b/modules/examples/hydra.nix
index eb1c5d9..f87ed5d 100644
--- a/modules/examples/hydra.nix
+++ b/modules/examples/hydra.nix
@@ -8,8 +8,6 @@ let
in
{
- services.nix-daemon.enable = true;
-
nix.settings.substituters = [ "http://cache1" ];
nix.settings.trusted-public-keys = [ "cache.daiderd.com-1:R8KOWZ8lDaLojqD+v9dzXAqGn29gEzPTTbr/GIpCTrI=" ];
diff --git a/modules/examples/lnl.nix b/modules/examples/lnl.nix
index dccae07..2204c2f 100644
--- a/modules/examples/lnl.nix
+++ b/modules/examples/lnl.nix
@@ -77,7 +77,6 @@
# serviceConfig.ProcessType = "Background";
# };
- services.nix-daemon.enable = true;
# services.nix-daemon.enableSocketListener = true;
nix.extraOptions = ''
diff --git a/modules/examples/simple.nix b/modules/examples/simple.nix
index 5baf009..8d769a2 100644
--- a/modules/examples/simple.nix
+++ b/modules/examples/simple.nix
@@ -11,10 +11,6 @@
# $ darwin-rebuild switch -I darwin-config=$HOME/.config/nixpkgs/darwin/configuration.nix
# environment.darwinConfig = "$HOME/.config/nixpkgs/darwin/configuration.nix";
- # Auto upgrade nix package and the daemon service.
- # services.nix-daemon.enable = true;
- # nix.package = pkgs.nix;
-
# Enable alternative shell support in nix-darwin.
# programs.fish.enable = true;