This commit is contained in:
iFargle 2023-12-12 20:37:35 +09:00
parent bae834739a
commit ac48fe2819

View file

@ -5,9 +5,9 @@
platform ? "x86_64-linux",
username ? "albert"
}: {
user = "${username}";
user = "root";
hostname = "${hostname}";
sshOpts = [ "-A" ];
sshOpts = [ "-A" "-q"];
profiles = {
system = {
@ -16,12 +16,12 @@
sshUser = "${username}";
sshOpts = [ "-A" ];
};
home-manager = {
path = inputs.deploy-rs.lib.${platform}.activate.home-manager self.homeConfigurations."${username}@${hostname}";
user = "root";
sshUser = "${username}";
sshOpts = [ "-A" ];
};
# home-manager = {
# path = inputs.deploy-rs.lib.${platform}.activate.home-manager self.homeConfigurations."${username}@${hostname}";
# user = "root";
# sshUser = "${username}";
# sshOpts = [ "-A" ];
# };
};
};