mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 12:29:19 -08:00
Mabon plans. Samhain work in progress continuations.
This commit is contained in:
parent
194eed8742
commit
361576ad24
4 changed files with 14 additions and 3 deletions
|
|
@ -47,8 +47,12 @@ Nix deployment related stuff.
|
||||||
- [x] Format "BigExtfs" as an encrypted, perhaps compressed ZFS pool.
|
- [x] Format "BigExtfs" as an encrypted, perhaps compressed ZFS pool.
|
||||||
- [x] Migrate the content from "BigEXT" over to the new ZFS pool.
|
- [x] Migrate the content from "BigEXT" over to the new ZFS pool.
|
||||||
- [x] Format "BigEXT" to be the mirror of the drive formerly known as "BigExtfs".
|
- [x] Format "BigEXT" to be the mirror of the drive formerly known as "BigExtfs".
|
||||||
- [ ] Excess space on the 3TiB drive should be formatted as either exFAT or ext4.
|
- [x] Excess space on the 3TiB drive should be formatted as either exFAT or ext4.
|
||||||
- [ ] Work out any remaining quirks of this.
|
- [x] Work out any remaining quirks of this.
|
||||||
|
|
||||||
|
### Host: mabon
|
||||||
|
- [ ] Reinstall mabon with a ZFS filesystem for the root.
|
||||||
|
- [ ] Set up a backups system that pulls from samhain's protected dataset.
|
||||||
|
|
||||||
### Group: graphical
|
### Group: graphical
|
||||||
- [ ] Move all devices to using Sway.
|
- [ ] Move all devices to using Sway.
|
||||||
|
|
|
||||||
|
|
@ -14,6 +14,7 @@
|
||||||
|
|
||||||
boot.loader.systemd-boot.enable = true;
|
boot.loader.systemd-boot.enable = true;
|
||||||
boot.loader.efi.canTouchEfiVariables = true;
|
boot.loader.efi.canTouchEfiVariables = true;
|
||||||
|
boot.supportedFilesystems = [ "zfs" "xfs" ];
|
||||||
|
|
||||||
networking.hostName = "samhain";
|
networking.hostName = "samhain";
|
||||||
networking.hostId = "617050fc";
|
networking.hostId = "617050fc";
|
||||||
|
|
|
||||||
|
|
@ -43,6 +43,11 @@
|
||||||
fsType = "zfs";
|
fsType = "zfs";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
fileSystems."/disks/excess" =
|
||||||
|
{ device = "/dev/disk/by-uuid/0af88a48-ccfd-4e54-9652-a5ae7f74e21d";
|
||||||
|
fsType = "xfs";
|
||||||
|
};
|
||||||
|
|
||||||
swapDevices =
|
swapDevices =
|
||||||
[ { device = "/dev/disk/by-uuid/88595373-9566-401b-8c9b-03bbc8314f1b"; }
|
[ { device = "/dev/disk/by-uuid/88595373-9566-401b-8c9b-03bbc8314f1b"; }
|
||||||
];
|
];
|
||||||
|
|
|
||||||
|
|
@ -25,6 +25,7 @@ in {
|
||||||
nix.gc.options = lib.mkDefault "--delete-older-than 1w";
|
nix.gc.options = lib.mkDefault "--delete-older-than 1w";
|
||||||
nix.trustedUsers = [ "root" "@wheel" ];
|
nix.trustedUsers = [ "root" "@wheel" ];
|
||||||
environment.variables.EDITOR = "kak";
|
environment.variables.EDITOR = "kak";
|
||||||
|
boot.supportedFilesystems = [ "zfs" ];
|
||||||
|
|
||||||
services.openssh.enable = true;
|
services.openssh.enable = true;
|
||||||
services.openssh.ports = lib.mkDefault [ 62954 ];
|
services.openssh.ports = lib.mkDefault [ 62954 ];
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue