Compare commits
No commits in common. "19886a488c2a0b853274858228235e54c6effe2e" and "f464d022e523fb38e946a67b57042a4e5c975c03" have entirely different histories.
19886a488c
...
f464d022e5
7 changed files with 15 additions and 30 deletions
|
@ -7,5 +7,10 @@
|
||||||
tags = [ "remote" ];
|
tags = [ "remote" ];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
# Required for remote builds
|
||||||
security.sudo.wheelNeedsPassword = false;
|
security.sudo.wheelNeedsPassword = false;
|
||||||
|
|
||||||
|
imports = [
|
||||||
|
../common/openssh.nix
|
||||||
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -8,4 +8,9 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
services.joycond.enable = true;
|
services.joycond.enable = true;
|
||||||
|
|
||||||
|
# Currently broken:
|
||||||
|
# environment.systemPackages = with pkgs; [
|
||||||
|
# itch
|
||||||
|
# ];
|
||||||
}
|
}
|
|
@ -10,4 +10,6 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
services.fail2ban.enable = true;
|
services.fail2ban.enable = true;
|
||||||
|
|
||||||
|
networking.firewall.allowedTCPPorts = [ 22 ];
|
||||||
}
|
}
|
1
hive.nix
1
hive.nix
|
@ -23,7 +23,6 @@ in {
|
||||||
(import "${sources.home-manager}/nixos")
|
(import "${sources.home-manager}/nixos")
|
||||||
(import "${sources.agenix}/modules/age.nix")
|
(import "${sources.agenix}/modules/age.nix")
|
||||||
./pinning.nix
|
./pinning.nix
|
||||||
./common/ssh.nix
|
|
||||||
./common/sudo.nix
|
./common/sudo.nix
|
||||||
./common/utilities.nix
|
./common/utilities.nix
|
||||||
./users/qenya.nix
|
./users/qenya.nix
|
||||||
|
|
|
@ -6,8 +6,7 @@
|
||||||
./hardware-configuration.nix
|
./hardware-configuration.nix
|
||||||
./home.nix
|
./home.nix
|
||||||
../../common/fonts.nix
|
../../common/fonts.nix
|
||||||
../../common/steam.nix
|
../../common/gaming.nix
|
||||||
./syncthing.nix
|
|
||||||
];
|
];
|
||||||
|
|
||||||
boot.loader.systemd-boot.enable = true;
|
boot.loader.systemd-boot.enable = true;
|
||||||
|
|
|
@ -1,24 +0,0 @@
|
||||||
{ config, lib, pkgs, ... }:
|
|
||||||
|
|
||||||
{
|
|
||||||
services.syncthing = {
|
|
||||||
enable = true;
|
|
||||||
user = "qenya";
|
|
||||||
dataDir = "/data/syncthing";
|
|
||||||
openDefaultPorts = true;
|
|
||||||
overrideDevices = true;
|
|
||||||
overrideFolders = true;
|
|
||||||
settings = {
|
|
||||||
devices = {
|
|
||||||
"kilgharrah" = { id = "RDT7IGD-76FZ6LY-37PPB2W-DWPQRPR-LZ4AXF7-4GIIHYJ-RVXUUSG-ZXPN3AZ"; };
|
|
||||||
};
|
|
||||||
folders = {
|
|
||||||
"Documents" = {
|
|
||||||
id = "alp59-7gs9s";
|
|
||||||
path = "~/Documents";
|
|
||||||
devices = [ "kilgharrah" ];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
|
@ -1,6 +1,5 @@
|
||||||
let
|
let
|
||||||
tohru = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOk8wuGzF0Y7SaH9aimo3SmCz99MTQwL+rEVhx0jsueU root@tohru";
|
yevaud = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICHUAgyQhl390yUObLUI+jEbuNrZ2U6+8px628DolD+T";
|
||||||
yevaud = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICHUAgyQhl390yUObLUI+jEbuNrZ2U6+8px628DolD+T root@yevaud";
|
systems = [ yevaud ];
|
||||||
systems = [ tohru yevaud ];
|
|
||||||
in
|
in
|
||||||
{ }
|
{ }
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue