NixOS-Config/nixos/hosts/wheatley/configuration.nix

139 lines
3.7 KiB
Nix
Raw Normal View History

# 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).
2024-01-08 15:58:04 +01:00
{
inputs,
outputs,
lib,
2024-01-08 15:58:04 +01:00
config,
pkgs,
...
}: {
imports = [
2024-01-12 00:08:07 +01:00
inputs.home-manager.nixosModules.home-manager
./hardware-configuration.nix
# Import shared configurations
../../shared
# ../../../disko/wheatley
2024-12-03 01:05:20 +01:00
inputs.nixos-hardware.nixosModules.raspberry-pi-4
];
boot.loader.generic-extlinux-compatible.enable = true;
boot.loader.generic-extlinux-compatible.configurationLimit = 5;
boot.loader.grub.enable = false;
2024-01-14 16:07:44 +01:00
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;
};
};
2024-01-08 15:58:04 +01:00
hardware.raspberry-pi."4".fkms-3d.enable = true;
2024-01-12 17:21:29 +01:00
sops.defaultSopsFile = ./secrets/sops.yaml;
sops.secrets."wireless.env".mode = "0440";
sops.secrets."wireless.env".owner = config.users.users.root.name;
2024-01-08 15:58:04 +01:00
environment.systemPackages = with pkgs; [
age
git
2024-01-16 09:56:38 +01:00
htop
libraspberrypi
2024-01-08 15:58:04 +01:00
];
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;
};
};
2024-01-12 17:21:29 +01:00
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@"
# '';
# };
2024-01-12 17:21:29 +01:00
2024-01-08 15:58:04 +01:00
networking.firewall.enable = true;
networking.firewall = {
allowedTCPPorts = [22 80 443 5335 8080 46899 46898];
allowedUDPPorts = [5335 46899 46898];
};
2024-01-08 15:58:04 +01:00
# Set your time zone.
time.timeZone = "Europe/Amsterdam";
programs.zsh = {
enable = true;
};
programs.git = {
enable = true;
};
home-manager = {
extraSpecialArgs = {inherit inputs outputs;};
users = {
# Import your home-manager configuration
lillian = import ../../../home-manager/hosts/wheatley;
2024-01-08 15:58:04 +01:00
};
};
networking.hostName = "wheatley"; # Define your hostname
boot.kernelPackages = lib.mkForce pkgs.linuxKernel.packages.linux_rpi4;
boot.supportedFilesystems = lib.mkForce ["vfat" "btrfs" "tmpfs"];
networking.wireless.interfaces = ["enu1u1"];
# powerManagement.cpuFreqGovernor = "powersave";
powerManagement.cpufreq.max = 648000;
2024-01-08 15:58:04 +01:00
# This value determines the NixOS release with which your system is to be
# 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?
2024-01-08 15:58:04 +01:00
}