backup changes
This commit is contained in:
parent
ba21bbcb41
commit
5f47648835
4 changed files with 1 additions and 49 deletions
|
|
@ -177,7 +177,6 @@
|
||||||
ds9 = nixosSystem "x86_64-linux" [ ./hosts/ds9/default.nix ];
|
ds9 = nixosSystem "x86_64-linux" [ ./hosts/ds9/default.nix ];
|
||||||
daedalusvm = nixosSystem "aarch64-linux" [ ./hosts/daedalusvm/default.nix ];
|
daedalusvm = nixosSystem "aarch64-linux" [ ./hosts/daedalusvm/default.nix ];
|
||||||
octopi = nixosSystem "aarch64-linux" [ ./hosts/octopi/default.nix ];
|
octopi = nixosSystem "aarch64-linux" [ ./hosts/octopi/default.nix ];
|
||||||
woolsey = nixosSystem "aarch64-linux" [ ./hosts/woolsey/default.nix ];
|
|
||||||
icarus = nixosSystem "x86_64-linux" [ ./hosts/icarus/default.nix ];
|
icarus = nixosSystem "x86_64-linux" [ ./hosts/icarus/default.nix ];
|
||||||
};
|
};
|
||||||
darwinConfigurations = processConfigurations {
|
darwinConfigurations = processConfigurations {
|
||||||
|
|
|
||||||
|
|
@ -31,7 +31,7 @@ in
|
||||||
hassosvm = "spool/safe/vms/hassos";
|
hassosvm = "spool/safe/vms/hassos";
|
||||||
};
|
};
|
||||||
in
|
in
|
||||||
builtins.mapAttrs (n: v: { target = "backup/${n}"; source = v; sendOptions = "w"; }) datasets;
|
builtins.mapAttrs (n: v: { target = "root@gatebridge:backup/${n}"; source = v; sendOptions = "w"; }) datasets;
|
||||||
|
|
||||||
programs.mosh.enable = true;
|
programs.mosh.enable = true;
|
||||||
security.sudo.wheelNeedsPassword = false;
|
security.sudo.wheelNeedsPassword = false;
|
||||||
|
|
|
||||||
|
|
@ -1,47 +0,0 @@
|
||||||
{ config, inputs, pkgs, lib, ... }:
|
|
||||||
{
|
|
||||||
imports = [
|
|
||||||
"${inputs.nixpkgs}/nixos/modules/installer/sd-card/sd-image-aarch64.nix"
|
|
||||||
"${inputs.nixos-hardware}/raspberry-pi/2/default.nix"
|
|
||||||
];
|
|
||||||
nixpkgs.overlays = [
|
|
||||||
(final: super: {
|
|
||||||
makeModulesClosure = x:
|
|
||||||
super.makeModulesClosure (x // { allowMissing = true; });
|
|
||||||
})
|
|
||||||
];
|
|
||||||
boot.loader.systemd-boot.enable = false;
|
|
||||||
boot.kernelPackages = pkgs.linuxPackages_rpi2;
|
|
||||||
boot.supportedFilesystems = lib.mkForce [ "reiserfs" "vfat" "zfs" "ext4" ];
|
|
||||||
networking.hostId = "eec43f51";
|
|
||||||
# networking.usePredictableInterfaceNames = false;
|
|
||||||
documentation.enable = false;
|
|
||||||
documentation.nixos.enable = false;
|
|
||||||
|
|
||||||
nix = {
|
|
||||||
autoOptimiseStore = true;
|
|
||||||
gc = {
|
|
||||||
automatic = true;
|
|
||||||
dates = "weekly";
|
|
||||||
options = "--delete-older-than 30d";
|
|
||||||
};
|
|
||||||
# Free up to 1GiB whenever there is less than 100MiB left.
|
|
||||||
extraOptions = ''
|
|
||||||
min-free = ${toString (100 * 1024 * 1024)}
|
|
||||||
max-free = ${toString (1024 * 1024 * 1024)}
|
|
||||||
'';
|
|
||||||
};
|
|
||||||
powerManagement.cpuFreqGovernor = "ondemand";
|
|
||||||
|
|
||||||
# Assuming this is installed on top of the disk image.
|
|
||||||
fileSystems = {
|
|
||||||
"/" = {
|
|
||||||
device = "/dev/disk/by-label/NIXOS_SD";
|
|
||||||
fsType = "ext4";
|
|
||||||
options = [ "noatime" ];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
ragon.services.ssh.enable = true;
|
|
||||||
ragon.services.tailscale.enable = true;
|
|
||||||
|
|
||||||
}
|
|
||||||
Binary file not shown.
Loading…
Add table
Add a link
Reference in a new issue