flake update, kicad patch got merged.

This commit is contained in:
Gabe Venberg 2025-12-27 21:03:03 +01:00
parent 58477a0079
commit 9670012844
17 changed files with 55 additions and 80 deletions

View file

@ -5,7 +5,6 @@
...
}:
(inputs.nixpkgs.lib.nixosSystem {
system = "aarch64-linux";
specialArgs = {inherit inputs myLib;};
# > Our main nixos configuration file <
modules = [
@ -37,6 +36,7 @@
"${modulesPath}/installer/scan/detected.nix"
"${modulesPath}/installer/scan/not-detected.nix"
];
nixpkgs.hostPlatform ="aarch64-linux";
host.details = {
user = "gabe";
fullName = "Gabe Venberg";

View file

@ -4,7 +4,6 @@
...
}:
(inputs.nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
specialArgs = {inherit inputs myLib;};
# > Our main nixos configuration file <
modules = [
@ -34,6 +33,7 @@
"${modulesPath}/installer/scan/detected.nix"
"${modulesPath}/installer/scan/not-detected.nix"
];
nixpkgs.hostPlatform ="x86_64-linux";
host.details = {
user = "gabe";
fullName = "Gabe Venberg";

View file

@ -4,7 +4,6 @@
...
}:
(inputs.nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
specialArgs = {inherit inputs myLib;};
modules = [
inputs.home-manager.nixosModules.home-manager
@ -18,6 +17,7 @@
...
}: {
imports = ["${modulesPath}/virtualisation/proxmox-lxc.nix"];
nixpkgs.hostPlatform ="x86_64-linux";
proxmoxLXC.manageHostName = false;
boot.loader.grub.enable = lib.mkForce false;
boot.loader.systemd-boot.enable = lib.mkForce false;

View file

@ -4,7 +4,6 @@
...
}:
(inputs.nixpkgs.lib.nixosSystem {
system = "aarch64-linux";
specialArgs = {inherit inputs myLib;};
modules = [
inputs.home-manager.nixosModules.home-manager
@ -24,6 +23,7 @@
...
}: {
imports = ["${modulesPath}/installer/sd-card/sd-image-aarch64.nix"];
nixpkgs.hostPlatform ="aarch64-linux";
hardware.enableRedistributableFirmware = true;
host.details = {
user = "gabe";