96 lines
3.4 KiB
Nix
96 lines
3.4 KiB
Nix
# 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’).
|
||
|
||
{ config, pkgs, lib, ... }:
|
||
|
||
{
|
||
nix.settings.experimental-features = [ "nix-command" "flakes" ];
|
||
|
||
boot = {
|
||
loader = lib.mkDefault {
|
||
efi.canTouchEfiVariables = false;
|
||
grub = {
|
||
enable = true;
|
||
efiSupport = true;
|
||
efiInstallAsRemovable = true;
|
||
devices = ["nodev"];
|
||
};
|
||
};
|
||
kernelParams = lib.mkDefault [ "ipv6.disable=1" ];
|
||
};
|
||
|
||
# system.autoUpgrade = mkDefault {
|
||
# enable = true;
|
||
# flake = "https://git.nyxerinys.dev/nyxerinys/nix-config";
|
||
# flags = [
|
||
# "--update-input" "nixpkgs"
|
||
# "--update-input" "secrets"
|
||
# "--commit-lock-file"
|
||
# ];
|
||
# dates = "04:00"; # Runs every day at 4 AM
|
||
# randomizedDelaySec = "1h"; # Prevents all your machines from hitting the repo at once
|
||
# };
|
||
|
||
networking.hostName = lib.mkDefault "nixos";
|
||
|
||
# Enable networking
|
||
networking.networkmanager = { enable = true; };
|
||
networking.enableIPv6 = false;
|
||
# Set your time zone.
|
||
time.timeZone = "America/Chicago";
|
||
|
||
# Select internationalisation properties.
|
||
i18n.defaultLocale = "en_US.UTF-8";
|
||
|
||
i18n.extraLocaleSettings = {
|
||
LC_ADDRESS = "en_US.UTF-8";
|
||
LC_IDENTIFICATION = "en_US.UTF-8";
|
||
LC_MEASUREMENT = "en_US.UTF-8";
|
||
LC_MONETARY = "en_US.UTF-8";
|
||
LC_NAME = "en_US.UTF-8";
|
||
LC_NUMERIC = "en_US.UTF-8";
|
||
LC_PAPER = "en_US.UTF-8";
|
||
LC_TELEPHONE = "en_US.UTF-8";
|
||
LC_TIME = "en_US.UTF-8";
|
||
};
|
||
|
||
# Configure keymap in X11
|
||
services.xserver.xkb = {
|
||
layout = "us";
|
||
variant = "";
|
||
};
|
||
|
||
users.users.nyxerinys = {
|
||
isNormalUser = true;
|
||
description = "Nyx";
|
||
extraGroups = [ "networkmanager" "wheel" "docker" "podman" ];
|
||
packages = with pkgs; [];
|
||
openssh.authorizedKeys.keys = [ "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQC7wPByAa6fsn7deoMRbnveEVXgwP8CTs3A1yCGCe+YRSDjS64MMcr5zoHjvlpKfRdsFCaiEXCnNiMSC9sZfmvZOFO3ptecNFnmt6gAZ7X67bYdTQedwiy7mK6JXAiRmv83YSblL5DaQY+jswIeTTyVk5A76tnCOzFVfFyRd0QOmjmF1vu0ii2zhVvODsfrB3wi7+fbPYONIA7nUVL13UFvavOKtEupSdN3LGhiYKNItrTzmCCSOPpttrkj/Bvqspt6kPJE82n+ryoWpOmzAsz+YdHCsZN16CDwkOOWzD2HrHzDUEt50kImlpTFthhGfysp7zO9dalZApMH5yPH7kRjztwBmttLh9b2+j08j/Z48WsHCyZaQws7xLW/08bh/4xGL5yoQeZ00UHWrJbH/WEnfKWpsQ9YJmA3xD3FVOvGjslmVHzBqCes9XRbTkLJTcOhTsBOYsZ0Eq6oZQ2AyFqWnn2RT604HtVmDqjtVMd2DEPkAmhCj2OW9ygjBFTnF8G55O2Pd2g9Y7zSv3i6F97ztQeqbNUfuAgEQ+9QYbEgxXVXMLnKIAZG+TBScl5Nk+mm/4oeKlESCfjgi5HIeda8IENEE48XJknb9MDpL1XP2s4fbnBRQS9f+OsDj5i86PAgLeEbVaq9OgifdxZKSTi6jZg4m3ZBGhK8kFjnbrKgMQ==" ];
|
||
};
|
||
|
||
nixpkgs.config.allowUnfree = true;
|
||
|
||
environment.systemPackages = with pkgs; [
|
||
git
|
||
pciutils
|
||
sysstat
|
||
xfsprogs
|
||
];
|
||
|
||
services.openssh.enable = true;
|
||
|
||
services.openiscsi = {
|
||
enable = true;
|
||
name = "iqn.2026-01.dev.nyxerinys:${config.networking.hostName}";
|
||
};
|
||
|
||
# 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 = "25.11"; # Did you read the comment?
|
||
|
||
}
|