fix warn
This commit is contained in:
parent
ab791e7b77
commit
e26b886871
2 changed files with 11 additions and 7 deletions
|
|
@ -48,7 +48,7 @@
|
||||||
} @ inputs: {
|
} @ inputs: {
|
||||||
nixosConfigurations = {
|
nixosConfigurations = {
|
||||||
NOcomputer = nixpkgs.lib.nixosSystem {
|
NOcomputer = nixpkgs.lib.nixosSystem {
|
||||||
system = "x86_64-linux";
|
# system = "x86_64-linux";
|
||||||
specialArgs = {inherit inputs;};
|
specialArgs = {inherit inputs;};
|
||||||
modules = [
|
modules = [
|
||||||
disko.nixosModules.disko
|
disko.nixosModules.disko
|
||||||
|
|
@ -69,7 +69,7 @@
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
NOlaptop = nixpkgs.lib.nixosSystem {
|
NOlaptop = nixpkgs.lib.nixosSystem {
|
||||||
system = "x86_64-linux";
|
# system = "x86_64-linux";
|
||||||
specialArgs = {inherit inputs;};
|
specialArgs = {inherit inputs;};
|
||||||
modules = [
|
modules = [
|
||||||
disko.nixosModules.disko
|
disko.nixosModules.disko
|
||||||
|
|
@ -95,7 +95,7 @@
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
NOmom = nixpkgs.lib.nixosSystem {
|
NOmom = nixpkgs.lib.nixosSystem {
|
||||||
system = "x86_64-linux";
|
# system = "x86_64-linux";
|
||||||
specialArgs = {inherit inputs;};
|
specialArgs = {inherit inputs;};
|
||||||
modules = [
|
modules = [
|
||||||
nixos-hardware.nixosModules.common-cpu-intel
|
nixos-hardware.nixosModules.common-cpu-intel
|
||||||
|
|
|
||||||
|
|
@ -122,8 +122,10 @@ in {
|
||||||
|
|
||||||
git = {
|
git = {
|
||||||
enable = true;
|
enable = true;
|
||||||
userName = "Tao Tien";
|
settings.user = {
|
||||||
userEmail = "29749622+taotien@users.noreply.github.com";
|
name = "Tao Tien";
|
||||||
|
email = "29749622+taotien@users.noreply.github.com";
|
||||||
|
};
|
||||||
# extraConfig = {
|
# extraConfig = {
|
||||||
# };
|
# };
|
||||||
ignores = [
|
ignores = [
|
||||||
|
|
@ -144,9 +146,11 @@ in {
|
||||||
|
|
||||||
ssh = {
|
ssh = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
matchBlocks = {
|
||||||
|
"*" = {
|
||||||
addKeysToAgent = "yes";
|
addKeysToAgent = "yes";
|
||||||
compression = true;
|
compression = true;
|
||||||
matchBlocks = {
|
};
|
||||||
"stargate" = {
|
"stargate" = {
|
||||||
hostname = "stargate.cs.usfca.edu";
|
hostname = "stargate.cs.usfca.edu";
|
||||||
user = "tltien";
|
user = "tltien";
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue