Compare commits

..

No commits in common. "eebd56918d31ca0d890b606ffdc471dcc78dc6b7" and "ca7785c04b522aade62cd147b5773f636bd153cf" have entirely different histories.

2 changed files with 109 additions and 45 deletions

View file

@ -19,7 +19,6 @@
heroic heroic
r2modman r2modman
ryujinx ryujinx
lutris
]; ];
programs.mangohud = { programs.mangohud = {

View file

@ -1,36 +1,117 @@
# 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).
{ {
lib,
pkgs,
inputs, inputs,
outputs, outputs,
modulesPath, lib,
config,
pkgs,
... ...
}: { }: {
imports = [ imports = [
# inputs.nixos-hardware.nixosModules.raspberry-pi-4 inputs.home-manager.nixosModules.home-manager
(modulesPath + "/installer/sd-card/sd-image-aarch64.nix")
../hardware-configuration.nix ./hardware-configuration.nix
# Import shared settings # Import shared configurations
../../shared ../../shared
# ../../../disko/wheatley
inputs.nixos-hardware.nixosModules.raspberry-pi-4
]; ];
nixpkgs.overlays = [ boot.loader.generic-extlinux-compatible.enable = true;
(final: super: { boot.loader.generic-extlinux-compatible.configurationLimit = 5;
makeModulesClosure = x: boot.loader.grub.enable = false;
super.makeModulesClosure (x // {allowMissing = true;}); boot.tmp.cleanOnBoot = true;
})
]; # boot.extraModulePackages = [
# (pkgs.callPackage ./rtl8189es.nix {
# kernel = config.boot.kernelPackages.kernel;
# })
# ];
nixpkgs = {
# You can add overlays here
overlays = [
(final: super: {
makeModulesClosure = x:
super.makeModulesClosure (x // {allowMissing = true;});
})
];
# Configure your nixpkgs instance
config = {
# Disable if you don't want unfree packages
allowUnfree = true;
};
};
hardware.raspberry-pi."4".fkms-3d.enable = true;
#Set up sops config, and configure where the keyfile is, then set the mode for the unencrypted keys
sops.defaultSopsFile = ./secrets/sops.yaml; sops.defaultSopsFile = ./secrets/sops.yaml;
boot.kernelPackages = lib.mkForce pkgs.linuxPackages_latest; sops.secrets."wireless.env".mode = "0440";
sops.secrets."wireless.env".owner = config.users.users.root.name;
boot.initrd.kernelModules = ["vc4" "bcm2835_dma" "i2c_bcm2835" "cma=256M" "console=tty0"]; environment.systemPackages = with pkgs; [
age
git
htop
libraspberrypi
];
sdImage.compressImage = false; boot.kernelParams = [
"console=ttyS0,115200n8"
];
nix = {
gc = {
automatic = true;
dates = "weekly";
options = "--delete-older-than 7d";
};
# This will add each flake input as a registry
# To make nix3 commands consistent with your flake
registry = lib.mapAttrs (_: value: {flake = value;}) inputs;
# This will additionally add your inputs to the system's legacy channels
# Making legacy nix commands consistent as well, awesome!
nixPath = lib.mapAttrsToList (key: value: "${key}=${value.to.path}") config.nix.registry;
settings = {
# Enable flakes and new 'nix' command
experimental-features = "nix-command flakes";
# Deduplicate and optimize nix store
auto-optimise-store = true;
};
};
networking.wireless.enable = true;
networking.networkmanager.wifi.powersave = false;
# networking.wireless.environmentFile = config.sops.secrets."wireless.env".path;
# networking.wireless.networks."KPNAA6306" = {
# hidden = true;
# auth = ''
# key_mgmt=WPA-PSK
# password="@PSK_HOME@"
# '';
# };
networking.firewall.enable = true;
networking.firewall = {
allowedTCPPorts = [22 80 443 5335 8080 46899 46898];
allowedUDPPorts = [5335 46899 46898];
};
# Set your time zone.
time.timeZone = "Europe/Amsterdam";
programs.zsh = {
enable = true;
};
programs.git = {
enable = true;
};
home-manager = { home-manager = {
extraSpecialArgs = {inherit inputs outputs;}; extraSpecialArgs = {inherit inputs outputs;};
@ -40,34 +121,18 @@
}; };
}; };
networking.hostName = "wheatley"; networking.hostName = "wheatley"; # Define your hostname
services.openssh = { boot.kernelPackages = lib.mkForce pkgs.linuxKernel.packages.linux_rpi4;
enable = true; boot.supportedFilesystems = lib.mkForce ["vfat" "btrfs" "tmpfs"];
# require public key authentication for better security networking.wireless.interfaces = ["enu1u1"];
settings.PasswordAuthentication = false;
settings.KbdInteractiveAuthentication = false;
settings.PermitRootLogin = "no";
};
networking.firewall = { # powerManagement.cpuFreqGovernor = "powersave";
enable = true; powerManagement.cpufreq.max = 648000;
allowPing = false;
allowedTCPPorts = [
22 # SSH
5349 # STUN tls
5350 # STUN tls alt
80 # http
443 # https
];
allowedUDPPortRanges = [
{
from = 49152;
to = 49999;
} # TURN relay
];
};
system.stateVersion = "25.05"; # This value determines the NixOS release with which your system is to be
nixpkgs.hostPlatform = lib.mkForce "aarch64-linux"; # compatible, in order to avoid breaking some software such as database
# servers. You should change this only after NixOS release notes say you
# should.
system.stateVersion = "unstable"; # Did you read the comment?
} }