try to fix everything

This commit is contained in:
cy 2025-01-23 18:06:38 -05:00
parent c32af7eaf9
commit 9b8ee9813d
4 changed files with 1 additions and 38 deletions

View file

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

View file

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

View file

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