add doll.repair; sync aerial
This commit is contained in:
parent
0f2d410de2
commit
fddfd8b18c
6 changed files with 24 additions and 8 deletions
9
Justfile
9
Justfile
|
@ -48,13 +48,18 @@ switch target_host=hostname:
|
||||||
|
|
||||||
# Update flake inputs to their latest revisions
|
# Update flake inputs to their latest revisions
|
||||||
update:
|
update:
|
||||||
nix flake update
|
nix flake update
|
||||||
|
|
||||||
|
upgit: update
|
||||||
|
git add flake.lock
|
||||||
|
git commit -m "update flake.lock"
|
||||||
|
git push
|
||||||
|
|
||||||
# Garbage collect old OS generations and remove stale packages from the nix store
|
# Garbage collect old OS generations and remove stale packages from the nix store
|
||||||
gc generations="5d":
|
gc generations="5d":
|
||||||
sudo nix-env --delete-generations {{generations}}
|
sudo nix-env --delete-generations {{generations}}
|
||||||
sudo nix-store --gc
|
sudo nix-store --gc
|
||||||
sudo nix-collect-garbage -d
|
sudo nix-collect-garbage -d --delete-older-than {{generations}}
|
||||||
|
|
||||||
# Add a machine's age key for SOPS
|
# Add a machine's age key for SOPS
|
||||||
sops-add machine_name target:
|
sops-add machine_name target:
|
||||||
|
|
|
@ -8,6 +8,7 @@
|
||||||
];
|
];
|
||||||
|
|
||||||
boot.tmp.cleanOnBoot = true;
|
boot.tmp.cleanOnBoot = true;
|
||||||
|
boot.loader.systemd-boot.configurationLimit = 5;
|
||||||
|
|
||||||
# Set ET
|
# Set ET
|
||||||
time.timeZone = lib.mkDefault "America/New_York";
|
time.timeZone = lib.mkDefault "America/New_York";
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{ inputs, ... }: {
|
{ inputs, ... }: {
|
||||||
imports = [
|
# imports = [
|
||||||
inputs.kde2nix.nixosModules.plasma6
|
# inputs.kde2nix.nixosModules.plasma6
|
||||||
];
|
# ];
|
||||||
|
|
||||||
services.xserver = {
|
services.xserver = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
./hardware-configuration.nix
|
./hardware-configuration.nix
|
||||||
../../client.nix
|
../../client.nix
|
||||||
|
|
||||||
../../features/plasma5.nix
|
../../features/plasma6.nix
|
||||||
../../features/tailscale.nix
|
../../features/tailscale.nix
|
||||||
../../features/sound
|
../../features/sound
|
||||||
../../features/nvidia.nix
|
../../features/nvidia.nix
|
||||||
|
@ -34,5 +34,9 @@
|
||||||
];
|
];
|
||||||
|
|
||||||
networking.firewall.allowedTCPPorts = [ 42069 8000 ];
|
networking.firewall.allowedTCPPorts = [ 42069 8000 ];
|
||||||
networking.firewall.allowedUDPPorts = [ 42069 ];
|
networking.firewall.allowedUDPPorts = [ 42069 ];
|
||||||
|
|
||||||
|
services.xserver.displayManager.setupCommands = ''
|
||||||
|
nvidia-settings -a AllowVRR=0
|
||||||
|
'';
|
||||||
}
|
}
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
# still possible to use this option, but it's recommended to use it in conjunction
|
# still possible to use this option, but it's recommended to use it in conjunction
|
||||||
# with explicit per-interface declarations with `networking.interfaces.<interface>.useDHCP`.
|
# with explicit per-interface declarations with `networking.interfaces.<interface>.useDHCP`.
|
||||||
networking.useDHCP = lib.mkDefault true;
|
networking.useDHCP = lib.mkDefault true;
|
||||||
networking.dhcpcd.IPv6rs = true;
|
# networking.dhcpcd.IPv6rs = true;
|
||||||
# networking.interfaces.enp5s0.useDHCP = lib.mkDefault true;
|
# networking.interfaces.enp5s0.useDHCP = lib.mkDefault true;
|
||||||
# networking.interfaces.enp6s0.useDHCP = lib.mkDefault true;
|
# networking.interfaces.enp6s0.useDHCP = lib.mkDefault true;
|
||||||
# networking.interfaces.enp7s0.useDHCP = lib.mkDefault true;
|
# networking.interfaces.enp7s0.useDHCP = lib.mkDefault true;
|
||||||
|
|
|
@ -123,6 +123,12 @@ in {
|
||||||
serverAliases = [ "metagame-new.ps2.live" ];
|
serverAliases = [ "metagame-new.ps2.live" ];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
"doll.repair" = static {
|
||||||
|
src = inputs.noe-sh.packages.${pkgs.system}.default;
|
||||||
|
};
|
||||||
|
|
||||||
|
"porcelain.doll.repair" = placeholder;
|
||||||
|
|
||||||
# Generic store for /.well-known/ paths.
|
# Generic store for /.well-known/ paths.
|
||||||
# "well-known.sapphic.engineer" = defaultConfig // {
|
# "well-known.sapphic.engineer" = defaultConfig // {
|
||||||
# locations."=/.well-known/matrix/server" = let
|
# locations."=/.well-known/matrix/server" = let
|
||||||
|
|
Loading…
Add table
Reference in a new issue