2024-07-23 18:24:15 +02:00
|
|
|
|
{
|
|
|
|
|
inputs,
|
|
|
|
|
configLib,
|
|
|
|
|
...
|
|
|
|
|
}:
|
2024-07-30 22:25:53 +02:00
|
|
|
|
(inputs.nixpkgs.lib.nixosSystem {
|
2024-07-23 18:24:15 +02:00
|
|
|
|
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
|
2024-07-30 22:25:53 +02:00
|
|
|
|
|
|
|
|
|
../configs/nixos/common.nix
|
|
|
|
|
../configs/nixos/sshd.nix
|
|
|
|
|
# ../configs/nixos/secrets.nix
|
|
|
|
|
../configs/nixos/tailscale.nix
|
2024-07-23 18:24:15 +02:00
|
|
|
|
({
|
|
|
|
|
config,
|
|
|
|
|
pkgs,
|
|
|
|
|
lib,
|
|
|
|
|
configLib,
|
2024-07-30 22:25:53 +02:00
|
|
|
|
modulesPath,
|
2024-07-23 18:24:15 +02:00
|
|
|
|
...
|
|
|
|
|
}: {
|
2024-07-31 17:50:30 +02:00
|
|
|
|
imports = ["${modulesPath}/installer/sd-card/sd-image-aarch64.nix"];
|
2024-07-23 18:24:15 +02:00
|
|
|
|
hardware.enableRedistributableFirmware = true;
|
|
|
|
|
host = {
|
|
|
|
|
user = "gabe";
|
|
|
|
|
fullName = "Gabe Venberg";
|
|
|
|
|
};
|
2024-07-30 22:25:53 +02:00
|
|
|
|
networking.hostName = "nixpi"; # Define your hostname.
|
2024-07-23 18:24:15 +02:00
|
|
|
|
networking.useNetworkd = true;
|
|
|
|
|
systemd.network = {
|
|
|
|
|
enable = true;
|
2024-07-30 22:25:53 +02:00
|
|
|
|
networks."eth0" = {
|
|
|
|
|
name = "eth0";
|
|
|
|
|
DHCP = "yes";
|
|
|
|
|
# address = ["TODO"];
|
|
|
|
|
# gateway = ["TODO"];
|
|
|
|
|
# dns = ["1.1.1.1"];
|
2024-07-23 18:24:15 +02:00
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
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 = [
|
2024-07-30 22:25:53 +02:00
|
|
|
|
../roles/home-manager/minimal-terminal.nix
|
|
|
|
|
../configs/home-manager/common.nix
|
2024-07-23 18:24:15 +02:00
|
|
|
|
inputs.nixvim.homeManagerModules.nixvim
|
2024-07-30 22:25:53 +02:00
|
|
|
|
# ../configs/home-manager/secrets.nix
|
2024-07-23 18:24:15 +02:00
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
# 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;
|
|
|
|
|
|
2024-08-03 06:36:23 +02:00
|
|
|
|
boot.supportedFilesystems.zfs = lib.mkForce false;
|
|
|
|
|
boot.kernelParams = [
|
|
|
|
|
"console=ttyS1,115200n8"
|
|
|
|
|
];
|
|
|
|
|
boot.loader.grub.enable = false;
|
|
|
|
|
boot.loader.generic-extlinux-compatible.enable = true;
|
|
|
|
|
|
2024-07-23 18:24:15 +02:00
|
|
|
|
# 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).
|
2024-07-30 22:25:53 +02:00
|
|
|
|
system.stateVersion = "24.05"; # Did you read the comment?
|
2024-07-23 18:24:15 +02:00
|
|
|
|
})
|
|
|
|
|
];
|
2024-07-30 22:25:53 +02:00
|
|
|
|
})
|
|
|
|
|
.config
|
|
|
|
|
.system
|
|
|
|
|
.build
|
|
|
|
|
.sdImage
|