feat: added woolsey

This commit is contained in:
Philipp Hochkamp 2022-11-22 16:31:00 +01:00
parent 0c0048e5da
commit 94b617caac
2 changed files with 3 additions and 2 deletions

View file

@ -177,6 +177,7 @@
ds9 = nixosSystem "x86_64-linux" [ ./hosts/ds9/default.nix ];
daedalusvm = nixosSystem "aarch64-linux" [ ./hosts/daedalusvm/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 ];
};
darwinConfigurations = processConfigurations {

View file

@ -2,7 +2,7 @@
{
imports = [
"${inputs.nixpkgs}/nixos/modules/installer/sd-card/sd-image-aarch64.nix"
"${inputs.nixos-hardware}/raspberry-pi/4/default.nix"
"${inputs.nixos-hardware}/raspberry-pi/2/default.nix"
];
nixpkgs.overlays = [
(final: super: {
@ -11,7 +11,7 @@
})
];
boot.loader.systemd-boot.enable = false;
boot.kernelPackages = pkgs.linuxPackages_rpi3;
boot.kernelPackages = pkgs.linuxPackages_rpi2;
boot.supportedFilesystems = lib.mkForce [ "reiserfs" "vfat" "zfs" "ext4" ];
networking.hostId = "eec43f51";
# networking.usePredictableInterfaceNames = false;