forked from emily/nixfiles
fixes
This commit is contained in:
parent
5b77db7c54
commit
240c4d8730
4 changed files with 9 additions and 8 deletions
|
@ -19,7 +19,6 @@ with lib; {
|
|||
bottom
|
||||
man-pages
|
||||
man-pages-posix
|
||||
linux-manual
|
||||
unzip
|
||||
zip
|
||||
figlet
|
||||
|
@ -29,6 +28,13 @@ with lib; {
|
|||
fish.enable = true;
|
||||
};
|
||||
|
||||
deployment = {
|
||||
tags = [ "all" ];
|
||||
targetHost = mkDefault config.networking.fqdn;
|
||||
targetPort = mkDefault 22;
|
||||
targetUser = mkDefault null;
|
||||
};
|
||||
|
||||
security.dhparams.defaultBitSize = 4096;
|
||||
|
||||
system.activationScripts.motd.text = let
|
||||
|
|
|
@ -24,6 +24,7 @@
|
|||
htop
|
||||
restic
|
||||
] ++ lib.optionals config.kyouma.machine-type.graphical [
|
||||
linux-manual
|
||||
colmena
|
||||
thunderbird
|
||||
obsidian
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
console.enable = false;
|
||||
|
||||
deployment = {
|
||||
targetHost = "192.168.178.170";
|
||||
targetHost = "192.168.178.166";
|
||||
targetUser = "nixos";
|
||||
};
|
||||
|
||||
|
|
|
@ -26,12 +26,6 @@
|
|||
hosts = [ "web-dus" "crime" "ryuuko" "lain" ];
|
||||
hostCfg = hostname: {
|
||||
imports = [ (./config/hosts/${hostname}/configuration.nix) ];
|
||||
deployment = with nixpkgs.lib; {
|
||||
tags = [ "all" ];
|
||||
targetHost = mkDefault config.networking.fqdn;
|
||||
targetPort = mkDefault 22;
|
||||
targetUser = mkDefault null;
|
||||
};
|
||||
};
|
||||
in {
|
||||
meta = {
|
||||
|
|
Loading…
Reference in a new issue