From cb5a5794bd36ebb41ad8791510600d1d63c7081d Mon Sep 17 00:00:00 2001 From: xinyangli Date: Fri, 24 Nov 2023 20:49:18 +0800 Subject: [PATCH] home: move nix substituter to machine level nix conf --- home/xin/common/default.nix | 7 ------- machines/calcite/configuration.nix | 12 +++++++----- 2 files changed, 7 insertions(+), 12 deletions(-) diff --git a/home/xin/common/default.nix b/home/xin/common/default.nix index e461b9c..c76d3e8 100644 --- a/home/xin/common/default.nix +++ b/home/xin/common/default.nix @@ -6,13 +6,6 @@ ./vim.nix ]; - nix.settings = { - experimental-features = [ "nix-command" "flakes" ]; - auto-optimise-store = true; - substituters = "https://mirrors.ustc.edu.cn/nix-channels/store https://mirrors.tuna.tsinghua.edu.cn/nix-channels/store"; - }; - - home.packages = with pkgs; [ dig du-dust # du + rust diff --git a/machines/calcite/configuration.nix b/machines/calcite/configuration.nix index 7fdab31..c89aa84 100644 --- a/machines/calcite/configuration.nix +++ b/machines/calcite/configuration.nix @@ -101,8 +101,6 @@ systemd.services."getty@tty1".enable = false; systemd.services."autovt@tty1".enable = false; - services.intune.enable = true; - # Allow unfree packages nixpkgs.config.allowUnfree = true; nixpkgs.config.permittedInsecurePackages = [ @@ -188,7 +186,7 @@ config.nur.repos.xddxdd.wechat-uos # Password manager - keepassxc + bitwarden # Browser firefox @@ -213,15 +211,19 @@ # Use mirror for binary cache nix.settings.substituters = [ + "https://mirrors.bfsu.edu.cn/nix-channels/store" "https://mirrors.ustc.edu.cn/nix-channels/store" - "https://mirrors.tuna.tsinghua.edu.cn/nix-channels/store" ]; nix.gc = { automatic = true; dates = "weekly"; options = "--delete-older-than 30d"; }; - nix.settings.trusted-users = [ "xin" "root" ]; + nix.settings = { + experimental-features = [ "nix-command" "flakes" ]; + auto-optimise-store = true; + trusted-users = [ "xin" "root" ]; + }; nix.extraOptions = '' !include "${config.sops.secrets.github_public_token.path}" '';