Compare commits
No commits in common. "ce5ee1f315807926da20ffb472433f5b7853d7cf" and "8051acd6ccd2f9d83d00ec3d839b7b5e4f0bb5c1" have entirely different histories.
ce5ee1f315
...
8051acd6cc
5 changed files with 11 additions and 7 deletions
|
|
@ -18,10 +18,6 @@ Switch server
|
||||||
|
|
||||||
nixos-rebuild switch --target-host root@posixlycorrect.com --use-substitutes --show-trace --flake .\#vps
|
nixos-rebuild switch --target-host root@posixlycorrect.com --use-substitutes --show-trace --flake .\#vps
|
||||||
|
|
||||||
Update homepage
|
|
||||||
|
|
||||||
nix flake update --commit-lock-file homepage
|
|
||||||
|
|
||||||
|
|
||||||
## Cleanup
|
## Cleanup
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -38,6 +38,7 @@
|
||||||
inherit flakes;
|
inherit flakes;
|
||||||
|
|
||||||
system = "x86_64-linux";
|
system = "x86_64-linux";
|
||||||
|
doctrinePrefix = "local";
|
||||||
|
|
||||||
paths = {
|
paths = {
|
||||||
localOverlay = "pkgs";
|
localOverlay = "pkgs";
|
||||||
|
|
|
||||||
|
|
@ -27,14 +27,19 @@ in {
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
trivium = {
|
# trivionomicon
|
||||||
|
local = {
|
||||||
sway.enable = true;
|
sway.enable = true;
|
||||||
trivionomiconMotd.enable = true;
|
trivionomiconMotd.enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
networking = {
|
networking = {
|
||||||
networkmanager.enable = true;
|
networkmanager.enable = true;
|
||||||
|
|
||||||
|
#TODO
|
||||||
useDHCP = false; # The global useDHCP flag is deprecated, therefore explicitly set to false here.
|
useDHCP = false; # The global useDHCP flag is deprecated, therefore explicitly set to false here.
|
||||||
|
interfaces.enp7s0.useDHCP = true; # Per-interface useDHCP will be mandatory in the future, so this generated config
|
||||||
|
interfaces.wlp6s0.useDHCP = true; # replicates the default behaviour.
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -18,7 +18,8 @@
|
||||||
bluetooth.enable = true;
|
bluetooth.enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
trivium = {
|
# trivionomicon
|
||||||
|
local = {
|
||||||
laptop.enable = true;
|
laptop.enable = true;
|
||||||
thinkpad.enable = true;
|
thinkpad.enable = true;
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -37,7 +37,8 @@ with lib; {
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
trivium.soju = {
|
# trivionomicon
|
||||||
|
local.soju = {
|
||||||
enable = true;
|
enable = true;
|
||||||
fullyQualifiedDomain = "soju.posixlycorrect.com";
|
fullyQualifiedDomain = "soju.posixlycorrect.com";
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue