Files
nixos/hosts/unstable/genesis/default.nix
T
Greg Hellings f8cc47614f
buildbot/nix-eval Build done.
buildbot/nix-build gitea:greg/nixos#checks.aarch64-darwin.pkg-adblock_update Build done.
buildbot/nix-build Build done.
Update flake.lock / update-flake-lock (push) Failing after 8s
Update manifest chart versions / update-manifests (push) Successful in 4s
chore: remove unused genesis config bits
2026-04-24 18:56:10 -05:00

39 lines
780 B
Nix
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# Edit this configuration file to define what should be installed on
# your system. Help is available in the configuration.nix(5) man page
# and in the NixOS manual (accessible by running nixos-help).
{ pkgs, ... }:
{
imports = [
# Include the results of the hardware scan.
./hardware-configuration.nix
./networking.nix
];
greg = {
home = true;
gnome.enable = false;
proxies = {
};
};
# Bootloader.
boot.loader = {
efi = {
canTouchEfiVariables = true;
};
systemd-boot = {
enable = true;
configurationLimit = 10;
edk2-uefi-shell.enable = true;
};
};
environment.systemPackages = with pkgs; [
create_ssl
step-ca
];
networking.hostName = "genesis"; # Define your hostname.
}