diff options
author | Nguyễn Gia Phong <cnx@loang.net> | 2024-01-10 22:42:15 +0900 |
---|---|---|
committer | Nguyễn Gia Phong <cnx@loang.net> | 2024-01-10 22:42:53 +0900 |
commit | 32c021bbed7707301f73e2d8362002a615502ed6 (patch) | |
tree | 21da75906a074cb2d3477eedeee2070d5d9cc20e | |
parent | dd2bc1292ac634238703a9d8e441ccc1b7ca0851 (diff) | |
download | nixos-conf-32c021bbed7707301f73e2d8362002a615502ed6.tar.gz |
Revert "Enable Guix service"
This reverts commit dd2bc1292ac634238703a9d8e441ccc1b7ca0851.
-rw-r--r-- | configuration.nix | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/configuration.nix b/configuration.nix index 9bdcf54..340eab4 100644 --- a/configuration.nix +++ b/configuration.nix @@ -20,7 +20,7 @@ { environment = { enableAllTerminfo = true; - systemPackages = with pkgs; [ git guix htop man-pages rsync vim ]; + systemPackages = with pkgs; [ git htop man-pages rsync vim ]; }; fileSystems."/mnt/nas" = { @@ -91,14 +91,11 @@ wheelNeedsPassword = false; }; - services = { - guix.enable = true; - openssh = { - enable = true; - openFirewall = true; - settings.PasswordAuthentication = false; - ports = [ 2211 ]; - }; + services.openssh = { + enable = true; + openFirewall = true; + settings.PasswordAuthentication = false; + ports = [ 2211 ]; }; system.stateVersion = "22.05"; |