This commit is contained in:
mjallen18
2025-09-23 19:06:19 -05:00
parent aa0d09d3c9
commit 4a00394402
4 changed files with 12 additions and 3 deletions

View File

@@ -187,6 +187,9 @@
# Pi4 # # Pi4 #
# ###################################################### # ######################################################
pi4 = { pi4 = {
specialArgs = {
nixpkgs = inputs.nixpkgs-stable;
};
modules = with inputs; [ modules = with inputs; [
disko.nixosModules.disko disko.nixosModules.disko
nixos-raspberrypi.nixosModules.raspberry-pi-4.base nixos-raspberrypi.nixosModules.raspberry-pi-4.base
@@ -202,6 +205,9 @@
# Pi5 # # Pi5 #
# ###################################################### # ######################################################
pi5 = { pi5 = {
specialArgs = {
nixpkgs = inputs.nixpkgs-stable;
};
modules = with inputs; [ modules = with inputs; [
disko.nixosModules.disko disko.nixosModules.disko
nixos-raspberrypi.nixosModules.raspberry-pi-5.base nixos-raspberrypi.nixosModules.raspberry-pi-5.base

View File

@@ -36,7 +36,6 @@
xorg.libXrandr xorg.libXrandr
xorg.libXi xorg.libXi
zlib zlib
qt5.full
pango pango
cairo cairo
atkmm atkmm

View File

@@ -8,7 +8,9 @@ in
environment.systemPackages = environment.systemPackages =
with pkgs; with pkgs;
[ [
disko
nil nil
nixos-anywhere
qemu qemu
udisks2 udisks2
unzip unzip

View File

@@ -8,11 +8,13 @@
}: }:
{ {
imports = [ imports = [
./adguard.nix # ./adguard.nix
./boot.nix ./boot.nix
./sops.nix ./sops.nix
]; ];
virtualisation.docker.enable = true;
${namespace} = { ${namespace} = {
# ################################################### # ###################################################
@@ -52,7 +54,7 @@
# # Services # # # # Services # #
# ################################################### # ###################################################
services.home-assistant.enable = true; services.home-assistant.enable = false;
# ################################################### # ###################################################
# # Network # # # # Network # #