From 55473f78ad7b015737a0e18355338fafa90f73aa Mon Sep 17 00:00:00 2001
From: xinyangli <lixinyang411@gmail.com>
Date: Sat, 13 Jan 2024 10:47:37 +0800
Subject: [PATCH] chore: fix format

---
 flake.nix                       | 98 ++++++++++++++++++---------------
 machines/dolomite/default.nix   |  5 ++
 machines/massicot/default.nix   |  2 +-
 modules/home-manager/vscode.nix |  2 +-
 4 files changed, 60 insertions(+), 47 deletions(-)

diff --git a/flake.nix b/flake.nix
index e5d7755..c8182ad 100644
--- a/flake.nix
+++ b/flake.nix
@@ -9,7 +9,7 @@
       inputs.nixpkgs.follows = "nixpkgs";
     };
 
-    nix-vscode-extensions =  {
+    nix-vscode-extensions = {
       url = "github:nix-community/nix-vscode-extensions";
       inputs.nixpkgs.follows = "nixpkgs";
       inputs.flake-utils.follows = "flake-utils";
@@ -20,7 +20,7 @@
       inputs.nixpkgs.follows = "nixpkgs";
       inputs.flake-utils.follows = "flake-utils";
     };
-  
+
     nur = {
       url = "github:nix-community/NUR";
     };
@@ -86,7 +86,7 @@
           };
         };
       };
-      mkNixos = { system, modules, specialArgs ? {}}: nixpkgs.lib.nixosSystem {
+      mkNixos = { system, modules, specialArgs ? { } }: nixpkgs.lib.nixosSystem {
         inherit system;
         specialArgs = specialArgs // { inherit inputs system; };
         modules = [
@@ -102,57 +102,65 @@
 
       homeConfigurations = builtins.listToAttrs [ (mkHomeConfiguration "xin" "calcite") ];
 
-      colmenaHive = colmena.lib.makeHive {
+      colmenaHive =
+        let
+          deploymentModule = {
+            deployment.targetUser = "xin";
+          };
+          sharedModules = [
+            self.nixosModules.default
+            deploymentModule
+          ];
+        in
+        colmena.lib.makeHive {
           meta = {
-              nixpkgs = import nixpkgs {
-                  system = "x86_64-linux";
-              };
-              machinesFile = ./nixbuild.net;
-              specialArgs = {
-                inherit inputs;
-              };
+            nixpkgs = import nixpkgs {
+              system = "x86_64-linux";
+            };
+            machinesFile = ./nixbuild.net;
+            specialArgs = {
+              inherit inputs;
+            };
           };
 
           massicot = { name, nodes, pkgs, ... }: with inputs; {
-              deployment.targetHost = "49.13.13.122";
+            deployment.targetHost = "49.13.13.122";
+            deployment.buildOnTarget = true;
 
-              imports = [
-                  { nixpkgs.system = "aarch64-linux"; }
-                  self.nixosModules.default
-                  machines/massicot
-              ];
+            imports = [
+              { nixpkgs.system = "aarch64-linux"; }
+              machines/massicot
+            ] ++ sharedModules;
           };
 
           sgp-00 = { name, nodes, pkgs, ... }: with inputs; {
-              imports = [
-                self.nixosModules.default
-                machines/dolomite
-              ];
-              nixpkgs.system = "x86_64-linux";
-              networking.hostName = "sgp-00";
-              system.stateVersion = "23.11";
-              deployment = {
-                targetHost = "video.namely.icu";
-                buildOnTarget = false;
-                tags = [ "proxy" ];
-              };
+            imports = [
+              machines/dolomite
+            ] ++ sharedModules;
+            nixpkgs.system = "x86_64-linux";
+            networking.hostName = "sgp-00";
+            system.stateVersion = "23.11";
+            deployment = {
+              targetHost = "video.namely.icu";
+              buildOnTarget = false;
+              tags = [ "proxy" ];
+            };
           };
 
           tok-00 = { name, nodes, pkgs, ... }: with inputs; {
-              imports = [
-                self.nixosModules.default
-                machines/dolomite
-              ];
-              nixpkgs.system = "x86_64-linux";
-              networking.hostName = "tok-00";
-              system.stateVersion = "23.11";
-              deployment = {
-                targetHost = "video01.namely.icu";
-                buildOnTarget = false;
-                tags = [ "proxy" ];
-              };
+            imports = [
+              machines/dolomite
+            ] ++ sharedModules;
+            nixpkgs.system = "x86_64-linux";
+            networking.hostName = "tok-00";
+            system.stateVersion = "23.11";
+            deployment = {
+              targetHost = "video01.namely.icu";
+              buildOnTarget = false;
+              tags = [ "proxy" ];
+            };
           };
-      };
+        };
 
       nixosConfigurations = {
         calcite = mkNixos {
@@ -162,7 +170,7 @@
             machines/calcite/configuration.nix
             (mkHome "xin" "calcite")
           ];
-        }; 
+        };
         raspite = mkNixos {
           system = "aarch64-linux";
           modules = [
@@ -186,12 +194,12 @@
           }
         ];
       }).config.system.build.sdImage;
-    } // flake-utils.lib.eachDefaultSystem (system: 
+    } // flake-utils.lib.eachDefaultSystem (system:
       let pkgs = nixpkgs.legacyPackages.${system}; in
       {
         devShells = {
           default = pkgs.mkShell {
-            packages = with pkgs; [ git colmena sops nix-output-monitor ];
+            packages = with pkgs; [ git colmena sops nix-output-monitor rnix-lsp ];
           };
         };
       }
diff --git a/machines/dolomite/default.nix b/machines/dolomite/default.nix
index e10df8b..bb91fa5 100644
--- a/machines/dolomite/default.nix
+++ b/machines/dolomite/default.nix
@@ -66,12 +66,17 @@
       };
     };
     services.fail2ban.enable = true;
+    programs.mosh.enable = true;
 
     security.sudo = {
       execWheelOnly = true;
       wheelNeedsPassword = false;
     };
 
+    nix.settings = {
+      trusted-users = config.users.groups.wheel.members;
+    };
+
     services.sing-box = let
       singTls = {
         enabled = true;
diff --git a/machines/massicot/default.nix b/machines/massicot/default.nix
index 283dadb..7a40b4e 100644
--- a/machines/massicot/default.nix
+++ b/machines/massicot/default.nix
@@ -87,8 +87,8 @@
       KerberosAuthentication = "no";
     };
   };
-
   services.fail2ban.enable = true;
+  programs.mosh.enable = true;
   
   systemd.services.sshd.wantedBy = pkgs.lib.mkForce [ "multi-user.target" ];
 }
diff --git a/modules/home-manager/vscode.nix b/modules/home-manager/vscode.nix
index 38e70e9..f8c98cc 100644
--- a/modules/home-manager/vscode.nix
+++ b/modules/home-manager/vscode.nix
@@ -5,7 +5,7 @@ let
   cfg = config.custom-hm.vscode;
 in
 {
-  options.custom-hm.vscode = { 
+  options.custom-hm.vscode = {
     enable = mkEnableOption "Vscode config";
   };
   config = mkIf cfg.enable {