Compare commits

...

2 commits

Author SHA1 Message Date
cy
2dae0ccb72 also build machines on arm cuz we have pi now 2025-01-23 18:07:38 -05:00
cy
9b8ee9813d try to fix everything 2025-01-23 18:06:38 -05:00
5 changed files with 2 additions and 38 deletions

View file

@ -14,6 +14,7 @@ jobs:
- pancake
os:
- ubuntu-latest
- ubuntu-24.04-arm
runs-on: ${{ matrix.os }}
continue-on-error: true
steps:

View file

@ -210,7 +210,6 @@
{
nixpkgs.pkgs = pkgsFor "aarch64-linux";
}
disko.nixosModules.disko
inputs.nixos-hardware.nixosModules.raspberry-pi-3
./hosts/pancake
./modules

View file

@ -9,8 +9,6 @@
"root"
"@wheel"
];
trusted-public-keys = [ "central:uWhjva6m6dhC2hqNisjn2hXGvdGBs19vPkA1dPEuwFg=" ];
substituters = [ "https://cache.cything.io/central" ];
};
channel.enable = false;
optimise = {

View file

@ -8,8 +8,8 @@
(modulesPath + "/installer/scan/not-detected.nix")
(modulesPath + "/profiles/qemu-guest.nix")
../common.nix
./disk-config.nix
./hardware-configuration.nix
../zsh.nix
];
services.openssh = {
@ -31,7 +31,6 @@
# network stuff
networking.hostName = "pancake";
networking.networkmanager.enable = true;
networking.firewall = {
enable = true;
allowedTCPPorts = [

View file

@ -1,33 +0,0 @@
{
disko.devices = {
disk = {
main = {
device = "/dev/mmcblk0";
type = "disk";
content = {
type = "gpt";
partitions = {
ESP = {
type = "EF00";
size = "500M";
content = {
type = "filesystem";
format = "vfat";
mountpoint = "/boot";
mountOptions = [ "umask=0077" ];
};
};
root = {
size = "100%";
content = {
type = "filesystem";
format = "ext4";
mountpoint = "/";
};
};
};
};
};
};
};
}