2024-06-19 01:06:17 +02:00
|
|
|
|
{
|
|
|
|
|
inputs,
|
|
|
|
|
configLib,
|
|
|
|
|
...
|
|
|
|
|
}:
|
|
|
|
|
inputs.nixpkgs.lib.nixosSystem {
|
|
|
|
|
system = "aarch64-linux";
|
|
|
|
|
specialArgs = {inherit inputs configLib;};
|
|
|
|
|
modules = [
|
|
|
|
|
inputs.home-manager.nixosModules.home-manager
|
|
|
|
|
inputs.disko.nixosModules.disko
|
|
|
|
|
./disk-config.nix
|
|
|
|
|
./hardware-config.nix
|
2024-06-21 19:09:07 +02:00
|
|
|
|
./adguard.nix
|
2024-06-19 01:06:17 +02:00
|
|
|
|
../../configs/nixos/common.nix
|
|
|
|
|
../../configs/nixos/sshd.nix
|
|
|
|
|
../../configs/nixos/secrets.nix
|
2024-07-23 18:24:15 +02:00
|
|
|
|
../../configs/nixos/tailscale.nix
|
2024-06-19 01:06:17 +02:00
|
|
|
|
({
|
|
|
|
|
config,
|
|
|
|
|
pkgs,
|
|
|
|
|
configLib,
|
|
|
|
|
...
|
|
|
|
|
}: {
|
|
|
|
|
boot.initrd.kernelModules = [
|
|
|
|
|
# PCIe/NVMe
|
|
|
|
|
"nvme"
|
|
|
|
|
"pcie_rockchip_host"
|
|
|
|
|
"rockchip_rga"
|
|
|
|
|
"rockchip_saradc"
|
|
|
|
|
"rockchip_thermal"
|
|
|
|
|
"rockchipdrm"
|
|
|
|
|
"phy_rockchip_pcie"
|
|
|
|
|
];
|
|
|
|
|
hardware.enableRedistributableFirmware = true;
|
|
|
|
|
host = {
|
|
|
|
|
user = "gabe";
|
|
|
|
|
fullName = "Gabe Venberg";
|
|
|
|
|
};
|
2024-06-21 19:09:07 +02:00
|
|
|
|
networking.hostName = "rockhole"; # Define your hostname.
|
2024-07-23 18:24:15 +02:00
|
|
|
|
networking.hostId = "e0c31928";
|
|
|
|
|
networking.useNetworkd = true;
|
2024-06-21 19:09:07 +02:00
|
|
|
|
systemd.network = {
|
|
|
|
|
enable = true;
|
|
|
|
|
networks."TODO" = {
|
2024-07-23 18:24:15 +02:00
|
|
|
|
name = "TODO";
|
2024-06-21 19:09:07 +02:00
|
|
|
|
address = ["10.10.0.2/16"];
|
|
|
|
|
gateway = ["10.10.0.1"];
|
|
|
|
|
dns = ["10.10.0.2"];
|
|
|
|
|
};
|
|
|
|
|
};
|
2024-06-19 01:06:17 +02:00
|
|
|
|
|
|
|
|
|
# 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/terminal.nix
|
|
|
|
|
../../configs/home-manager/common.nix
|
|
|
|
|
inputs.nixvim.homeManagerModules.nixvim
|
|
|
|
|
# ../../configs/home-manager/secrets.nix
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
# sops = lib.mkIf (inputs ? nix-secrets) {
|
|
|
|
|
# secrets = {
|
|
|
|
|
# };
|
|
|
|
|
# };
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
# Bootloader.
|
|
|
|
|
boot.loader.systemd-boot.enable = true;
|
|
|
|
|
boot.loader.efi.canTouchEfiVariables = false;
|
|
|
|
|
|
|
|
|
|
# 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).
|
2024-07-28 02:11:57 +02:00
|
|
|
|
system.stateVersion = "24.05"; # Did you read the comment?
|
2024-06-19 01:06:17 +02:00
|
|
|
|
})
|
|
|
|
|
];
|
|
|
|
|
}
|