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
|
bottom
|
||||||
man-pages
|
man-pages
|
||||||
man-pages-posix
|
man-pages-posix
|
||||||
linux-manual
|
|
||||||
unzip
|
unzip
|
||||||
zip
|
zip
|
||||||
figlet
|
figlet
|
||||||
|
@ -29,6 +28,13 @@ with lib; {
|
||||||
fish.enable = true;
|
fish.enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
deployment = {
|
||||||
|
tags = [ "all" ];
|
||||||
|
targetHost = mkDefault config.networking.fqdn;
|
||||||
|
targetPort = mkDefault 22;
|
||||||
|
targetUser = mkDefault null;
|
||||||
|
};
|
||||||
|
|
||||||
security.dhparams.defaultBitSize = 4096;
|
security.dhparams.defaultBitSize = 4096;
|
||||||
|
|
||||||
system.activationScripts.motd.text = let
|
system.activationScripts.motd.text = let
|
||||||
|
|
|
@ -24,6 +24,7 @@
|
||||||
htop
|
htop
|
||||||
restic
|
restic
|
||||||
] ++ lib.optionals config.kyouma.machine-type.graphical [
|
] ++ lib.optionals config.kyouma.machine-type.graphical [
|
||||||
|
linux-manual
|
||||||
colmena
|
colmena
|
||||||
thunderbird
|
thunderbird
|
||||||
obsidian
|
obsidian
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
console.enable = false;
|
console.enable = false;
|
||||||
|
|
||||||
deployment = {
|
deployment = {
|
||||||
targetHost = "192.168.178.170";
|
targetHost = "192.168.178.166";
|
||||||
targetUser = "nixos";
|
targetUser = "nixos";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -26,12 +26,6 @@
|
||||||
hosts = [ "web-dus" "crime" "ryuuko" "lain" ];
|
hosts = [ "web-dus" "crime" "ryuuko" "lain" ];
|
||||||
hostCfg = hostname: {
|
hostCfg = hostname: {
|
||||||
imports = [ (./config/hosts/${hostname}/configuration.nix) ];
|
imports = [ (./config/hosts/${hostname}/configuration.nix) ];
|
||||||
deployment = with nixpkgs.lib; {
|
|
||||||
tags = [ "all" ];
|
|
||||||
targetHost = mkDefault config.networking.fqdn;
|
|
||||||
targetPort = mkDefault 22;
|
|
||||||
targetUser = mkDefault null;
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
in {
|
in {
|
||||||
meta = {
|
meta = {
|
||||||
|
|
Loading…
Reference in a new issue