new machine, altostratus, my remote-work remote box.

This commit is contained in:
Gabe Venberg 2025-09-24 15:02:57 +02:00
parent 44cd697b63
commit 7ea5e9ed3c
9 changed files with 184 additions and 2 deletions

View file

@ -0,0 +1,93 @@
{
inputs,
myLib,
...
}:
inputs.nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
specialArgs = {inherit inputs myLib;};
modules = [
inputs.home-manager.nixosModules.home-manager
inputs.disko.nixosModules.disko
./disk-config.nix
./hardware-config.nix
../../configs/nixos/common.nix
../../configs/nixos/sshd.nix
../../configs/nixos/secrets.nix
../../configs/nixos/tailscale.nix
../../roles/nixos/embedded-dev.nix
({
config,
pkgs,
lib,
...
}: {
hardware.enableRedistributableFirmware = true;
host.details = {
user = "gabe";
fullName = "Gabe Venberg";
gui.enable = false;
};
networking.hostName = "altostratus"; # Define your hostname.
networking.hostId = "c62c7ef6";
networking.networkmanager = {
enable = true;
dns = "systemd-resolved";
};
services.resolved.enable = true;
users.users.${config.host.details.user}.extraGroups = ["networkmanager"];
# home-manager.sharedModules = [
# inputs.sops-nix.homeManagerModules.sops
# ];
home-manager.users.${config.host.details.user} = {
inputs,
osConfig,
lib,
...
}: {
host.details = osConfig.host.details;
user = {
git = {
profile = {
name = config.host.details.fullName;
email = "gabevenberg@gmail.com";
};
workProfile = {
enable = true;
email = "gabriel.venberg@assistme.io";
};
};
};
imports = [
../../roles/home-manager/minimal-terminal.nix
../../configs/home-manager/common.nix
# ../../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. Its 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 = "25.05"; # Did you read the comment?
})
];
}