added raspi sd card image.
This commit is contained in:
parent
d3a7b90d6d
commit
3153a2314d
|
@ -38,4 +38,6 @@ in {
|
||||||
proxyPass = "http://localhost:${toString srv.HTTP_PORT}";
|
proxyPass = "http://localhost:${toString srv.HTTP_PORT}";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
imports = [./nginx.nix];
|
||||||
}
|
}
|
||||||
|
|
|
@ -24,4 +24,6 @@
|
||||||
proxyPass = "http://localhost:5232";
|
proxyPass = "http://localhost:5232";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
imports = [./nginx.nix];
|
||||||
}
|
}
|
||||||
|
|
|
@ -95,6 +95,7 @@
|
||||||
gv-wsl = import ./hosts/wsl-workstation.nix {inherit inputs configLib;};
|
gv-wsl = import ./hosts/wsl-workstation.nix {inherit inputs configLib;};
|
||||||
rockhole = import ./hosts/rockhole64 {inherit inputs configLib;};
|
rockhole = import ./hosts/rockhole64 {inherit inputs configLib;};
|
||||||
cirrus = import ./hosts/cirrus {inherit inputs configLib;};
|
cirrus = import ./hosts/cirrus {inherit inputs configLib;};
|
||||||
|
remotepi-karp = import ./hosts/remotepi-karp {inherit inputs configLib;};
|
||||||
};
|
};
|
||||||
|
|
||||||
# Standalone home-manager configuration entrypoint
|
# Standalone home-manager configuration entrypoint
|
||||||
|
@ -127,6 +128,7 @@
|
||||||
proxmox = import ./packages/proxmox.nix {inherit inputs configLib;};
|
proxmox = import ./packages/proxmox.nix {inherit inputs configLib;};
|
||||||
iso = import ./packages/iso.nix {inherit inputs configLib;};
|
iso = import ./packages/iso.nix {inherit inputs configLib;};
|
||||||
aarch-64-iso = import ./packages/aarch64-iso.nix {inherit inputs configLib;};
|
aarch-64-iso = import ./packages/aarch64-iso.nix {inherit inputs configLib;};
|
||||||
|
rpi3-sd-image = import ./packages/rpi3-sd-image.nix {inherit inputs configLib;};
|
||||||
};
|
};
|
||||||
|
|
||||||
templates = import ./templates;
|
templates = import ./templates;
|
||||||
|
|
|
@ -17,7 +17,7 @@ inputs.nixpkgs.lib.nixosSystem {
|
||||||
../../configs/nixos/common.nix
|
../../configs/nixos/common.nix
|
||||||
../../configs/nixos/tailscale.nix
|
../../configs/nixos/tailscale.nix
|
||||||
../../configs/nixos/sshd.nix
|
../../configs/nixos/sshd.nix
|
||||||
../../configs/nixos/secrets.nix
|
# ../../configs/nixos/secrets.nix
|
||||||
../../configs/nixos/radicale.nix
|
../../configs/nixos/radicale.nix
|
||||||
../../configs/nixos/forgejo.nix
|
../../configs/nixos/forgejo.nix
|
||||||
({
|
({
|
||||||
|
|
|
@ -10,34 +10,31 @@ inputs.nixpkgs.lib.nixosSystem {
|
||||||
inputs.home-manager.nixosModules.home-manager
|
inputs.home-manager.nixosModules.home-manager
|
||||||
inputs.disko.nixosModules.disko
|
inputs.disko.nixosModules.disko
|
||||||
inputs.nixos-hardware.nixosModules.raspberry-pi-3
|
inputs.nixos-hardware.nixosModules.raspberry-pi-3
|
||||||
|
|
||||||
../../configs/nixos/common.nix
|
../../configs/nixos/common.nix
|
||||||
../../configs/nixos/sshd.nix
|
../../configs/nixos/sshd.nix
|
||||||
../../configs/nixos/secrets.nix
|
# ../../configs/nixos/secrets.nix
|
||||||
../../configs/nixos/tailscale.nix
|
../../configs/nixos/tailscale.nix
|
||||||
({
|
({
|
||||||
config,
|
config,
|
||||||
pkgs,
|
pkgs,
|
||||||
lib,
|
lib,
|
||||||
configLib,
|
configLib,
|
||||||
|
modulesPath,
|
||||||
...
|
...
|
||||||
}: {
|
}: {
|
||||||
boot.initrd.availableKernelModules = [
|
|
||||||
"xhci_pci"
|
|
||||||
"usbhid"
|
|
||||||
"usb_storage"
|
|
||||||
];
|
|
||||||
hardware.enableRedistributableFirmware = true;
|
hardware.enableRedistributableFirmware = true;
|
||||||
host = {
|
host = {
|
||||||
user = "gabe";
|
user = "gabe";
|
||||||
fullName = "Gabe Venberg";
|
fullName = "Gabe Venberg";
|
||||||
};
|
};
|
||||||
networking.hostName = "remotepi"; # Define your hostname.
|
networking.hostName = "remotepi-karp"; # Define your hostname.
|
||||||
networking.hostId = "8efd3e13";
|
networking.hostId = "8efd3e13";
|
||||||
networking.useNetworkd = true;
|
networking.useNetworkd = true;
|
||||||
systemd.network = {
|
systemd.network = {
|
||||||
enable = true;
|
enable = true;
|
||||||
networks."TODO" = {
|
networks."eth0" = {
|
||||||
name = "TODO";
|
name = "eth0";
|
||||||
address = ["TODO"];
|
address = ["TODO"];
|
||||||
gateway = ["TODO"];
|
gateway = ["TODO"];
|
||||||
dns = ["1.1.1.1"];
|
dns = ["1.1.1.1"];
|
||||||
|
@ -97,7 +94,7 @@ inputs.nixpkgs.lib.nixosSystem {
|
||||||
# this value at the release version of the first install of this system.
|
# this value at the release version of the first install of this system.
|
||||||
# Before changing this value read the documentation for this option
|
# Before changing this value read the documentation for this option
|
||||||
# (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
|
# (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
|
||||||
system.stateVersion = "24.11"; # Did you read the comment?
|
system.stateVersion = "24.05"; # Did you read the comment?
|
||||||
})
|
})
|
||||||
];
|
];
|
||||||
}
|
}
|
|
@ -14,7 +14,7 @@ inputs.nixpkgs.lib.nixosSystem {
|
||||||
./adguard.nix
|
./adguard.nix
|
||||||
../../configs/nixos/common.nix
|
../../configs/nixos/common.nix
|
||||||
../../configs/nixos/sshd.nix
|
../../configs/nixos/sshd.nix
|
||||||
../../configs/nixos/secrets.nix
|
# ../../configs/nixos/secrets.nix
|
||||||
../../configs/nixos/tailscale.nix
|
../../configs/nixos/tailscale.nix
|
||||||
({
|
({
|
||||||
config,
|
config,
|
||||||
|
|
105
packages/rpi3-sd-image.nix
Normal file
105
packages/rpi3-sd-image.nix
Normal file
|
@ -0,0 +1,105 @@
|
||||||
|
{
|
||||||
|
inputs,
|
||||||
|
configLib,
|
||||||
|
...
|
||||||
|
}:
|
||||||
|
(inputs.nixpkgs.lib.nixosSystem {
|
||||||
|
system = "aarch64-linux";
|
||||||
|
specialArgs = {inherit inputs configLib;};
|
||||||
|
modules = [
|
||||||
|
inputs.home-manager.nixosModules.home-manager
|
||||||
|
inputs.disko.nixosModules.disko
|
||||||
|
inputs.nixos-hardware.nixosModules.raspberry-pi-3
|
||||||
|
|
||||||
|
../configs/nixos/common.nix
|
||||||
|
../configs/nixos/sshd.nix
|
||||||
|
# ../configs/nixos/secrets.nix
|
||||||
|
../configs/nixos/tailscale.nix
|
||||||
|
({
|
||||||
|
config,
|
||||||
|
pkgs,
|
||||||
|
lib,
|
||||||
|
configLib,
|
||||||
|
modulesPath,
|
||||||
|
...
|
||||||
|
}: {
|
||||||
|
imports = [ "${modulesPath}/installer/sd-card/sd-image-aarch64.nix" ];
|
||||||
|
hardware.enableRedistributableFirmware = true;
|
||||||
|
host = {
|
||||||
|
user = "gabe";
|
||||||
|
fullName = "Gabe Venberg";
|
||||||
|
};
|
||||||
|
networking.hostName = "nixpi"; # Define your hostname.
|
||||||
|
networking.useNetworkd = true;
|
||||||
|
systemd.network = {
|
||||||
|
enable = true;
|
||||||
|
networks."eth0" = {
|
||||||
|
name = "eth0";
|
||||||
|
DHCP = "yes";
|
||||||
|
# address = ["TODO"];
|
||||||
|
# gateway = ["TODO"];
|
||||||
|
# dns = ["1.1.1.1"];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
fileSystems = {
|
||||||
|
"/" = {
|
||||||
|
device = "/dev/disk/by-label/NIXOS_SD";
|
||||||
|
fsType = "ext4";
|
||||||
|
options = ["noatime"];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
time.timeZone = "America/Chicago";
|
||||||
|
|
||||||
|
# home-manager.sharedModules = [
|
||||||
|
# inputs.sops-nix.homeManagerModules.sops
|
||||||
|
# ];
|
||||||
|
home-manager.users.${config.host.user} = {
|
||||||
|
inputs,
|
||||||
|
osConfig,
|
||||||
|
lib,
|
||||||
|
...
|
||||||
|
}: {
|
||||||
|
host = osConfig.host;
|
||||||
|
user = {
|
||||||
|
git = {
|
||||||
|
profile = {
|
||||||
|
name = config.host.fullName;
|
||||||
|
email = "gabevenberg@gmail.com";
|
||||||
|
};
|
||||||
|
workProfile.enable = false;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
imports = [
|
||||||
|
../roles/home-manager/minimal-terminal.nix
|
||||||
|
../configs/home-manager/common.nix
|
||||||
|
inputs.nixvim.homeManagerModules.nixvim
|
||||||
|
# ../configs/home-manager/secrets.nix
|
||||||
|
];
|
||||||
|
|
||||||
|
# sops = lib.mkIf (inputs ? nix-secrets) {
|
||||||
|
# secrets = {
|
||||||
|
# };
|
||||||
|
# };
|
||||||
|
};
|
||||||
|
|
||||||
|
# Open ports in the firewall.
|
||||||
|
# networking.firewall.allowedTCPPorts = [ ... ];
|
||||||
|
# networking.firewall.allowedUDPPorts = [ ... ];
|
||||||
|
# Or disable the firewall altogether.
|
||||||
|
# networking.firewall.enable = false;
|
||||||
|
|
||||||
|
# This value determines the NixOS release from which the default
|
||||||
|
# settings for stateful data, like file locations and database versions
|
||||||
|
# on your system were taken. It‘s perfectly fine and recommended to leave
|
||||||
|
# this value at the release version of the first install of this system.
|
||||||
|
# Before changing this value read the documentation for this option
|
||||||
|
# (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
|
||||||
|
system.stateVersion = "24.05"; # Did you read the comment?
|
||||||
|
})
|
||||||
|
];
|
||||||
|
})
|
||||||
|
.config
|
||||||
|
.system
|
||||||
|
.build
|
||||||
|
.sdImage
|
Loading…
Reference in a new issue