Compare commits

..

No commits in common. "2dae0ccb727437155cbeedff721c916994475258" and "c32af7eaf9fc188681cc5b533f0b347a247fa389" have entirely different histories.

5 changed files with 38 additions and 2 deletions

View file

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

View file

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

View file

@ -9,6 +9,8 @@
"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,6 +31,7 @@
# network stuff
networking.hostName = "pancake";
networking.networkmanager.enable = true;
networking.firewall = {
enable = true;
allowedTCPPorts = [

View file

@ -0,0 +1,33 @@
{
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 = "/";
};
};
};
};
};
};
};
}