2024-01-11 14:51:11 +01:00
|
|
|
|
# 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
|
|
|
|
{
|
2024-01-11 23:51:46 +01:00
|
|
|
|
inputs,
|
|
|
|
|
outputs,
|
|
|
|
|
lib,
|
2024-01-08 15:58:04 +01:00
|
|
|
|
config,
|
|
|
|
|
pkgs,
|
|
|
|
|
...
|
|
|
|
|
}: {
|
2024-01-08 16:24:38 +01:00
|
|
|
|
imports = [
|
2024-01-12 00:08:07 +01:00
|
|
|
|
inputs.home-manager.nixosModules.home-manager
|
|
|
|
|
|
2024-01-15 16:29:44 +01:00
|
|
|
|
./armv7l.nix
|
2024-01-08 16:24:38 +01:00
|
|
|
|
./hardware-configuration.nix
|
2024-01-11 14:51:11 +01:00
|
|
|
|
../../shared/locale/configuration.nix
|
2024-01-08 16:24:38 +01:00
|
|
|
|
];
|
|
|
|
|
|
2024-01-11 14:51:11 +01:00
|
|
|
|
boot.loader.generic-extlinux-compatible.enable = true;
|
2024-01-16 12:29:40 +01:00
|
|
|
|
boot.loader.generic-extlinux-compatible.configurationLimit = 5;
|
2024-01-11 14:51:11 +01:00
|
|
|
|
boot.loader.grub.enable = false;
|
2024-01-14 16:07:44 +01:00
|
|
|
|
boot.tmp.cleanOnBoot = true;
|
2024-01-11 14:51:11 +01:00
|
|
|
|
|
2024-01-12 00:15:08 +01:00
|
|
|
|
# boot.extraModulePackages = [
|
|
|
|
|
# (pkgs.callPackage ./rtl8189es.nix {
|
|
|
|
|
# kernel = config.boot.kernelPackages.kernel;
|
|
|
|
|
# })
|
|
|
|
|
# ];
|
2024-01-08 16:24:38 +01:00
|
|
|
|
nixpkgs = {
|
|
|
|
|
# You can add overlays here
|
|
|
|
|
overlays = [
|
|
|
|
|
# You can also add overlays exported from other flakes:
|
|
|
|
|
# neovim-nightly-overlay.overlays.default
|
|
|
|
|
|
|
|
|
|
# Or define it inline, for example:
|
|
|
|
|
# (final: prev: {
|
|
|
|
|
# hi = final.hello.overrideAttrs (oldAttrs: {
|
|
|
|
|
# patches = [ ./change-hello-to-hi.patch ];
|
|
|
|
|
# });
|
|
|
|
|
# })
|
|
|
|
|
];
|
|
|
|
|
# Configure your nixpkgs instance
|
|
|
|
|
config = {
|
|
|
|
|
# Disable if you don't want unfree packages
|
|
|
|
|
allowUnfree = true;
|
|
|
|
|
};
|
|
|
|
|
};
|
2024-01-08 15:58:04 +01:00
|
|
|
|
|
2024-01-12 17:21:29 +01:00
|
|
|
|
sops.defaultSopsFile = ./secrets/sops.yaml;
|
|
|
|
|
sops.age.keyFile = ../../../../../var/secrets/keys.txt;
|
|
|
|
|
|
|
|
|
|
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
|
2024-01-08 15:58:04 +01:00
|
|
|
|
];
|
|
|
|
|
|
2024-01-11 14:51:11 +01:00
|
|
|
|
boot.kernelParams = [
|
|
|
|
|
"console=ttyS0,115200n8"
|
|
|
|
|
];
|
|
|
|
|
|
2024-01-08 16:24:38 +01:00
|
|
|
|
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-11 14:51:11 +01:00
|
|
|
|
|
2024-01-12 17:21:29 +01:00
|
|
|
|
networking.wireless.enable = true;
|
|
|
|
|
networking.wireless.environmentFile = config.sops.secrets."wireless.env".path;
|
|
|
|
|
networking.wireless.networks."KPNAA6306" = {
|
|
|
|
|
hidden = true;
|
|
|
|
|
auth = ''
|
2024-01-15 16:49:22 +01:00
|
|
|
|
key_mgmt=WPA-PSK
|
2024-01-12 17:21:29 +01:00
|
|
|
|
password="@PSK_HOME@"
|
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
|
2024-01-08 15:58:04 +01:00
|
|
|
|
networking.firewall.enable = true;
|
|
|
|
|
|
2024-01-12 16:58:45 +01:00
|
|
|
|
networking.firewall = {
|
|
|
|
|
allowedTCPPorts = [22 80 443 5335 8080];
|
|
|
|
|
allowedUDPPorts = [5335];
|
|
|
|
|
};
|
2024-01-08 15:58:04 +01:00
|
|
|
|
# Set your time zone.
|
|
|
|
|
time.timeZone = "Europe/Amsterdam";
|
|
|
|
|
|
|
|
|
|
programs.zsh = {
|
|
|
|
|
enable = true;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
programs.git = {
|
|
|
|
|
enable = true;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
users.users = {
|
|
|
|
|
lillian = {
|
|
|
|
|
openssh.authorizedKeys.keys = [
|
|
|
|
|
"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCnYgErCnva8fvLvsmTMC6dHJp2Fvwja0BYL8K/58ugDxNA0PVGj5PpEMar5yhi4AFGGYL4EgD75tRgI/WQU87ZiKjJ6HFIhgX9curncB2kIJ0JoA+FIQMNOT72GFuhjcO4svanrobsMrRmcn193suXY/N6m6F+3pitxBfHPWuPKKjlZqVBzpqCdz9pXoGOk48OSYv7Zyw8roVsUw3fqJqs68LRLM/winWVhVSPabXGyX7PAAW51Nbv6M64REs+V1a+wGvK5sGhRy7lIBAIuD22tuL4/PZojST1hasKN+7cSp7F1QTi4u0yeQ2+gIclQNuhfvghzl6zcVEpOycFouSIJaJjo8jyuHkbm4I2XfALVTFHe7sLpYNNS7Mf6E6i5rHvAvtXI4UBx/LjgPOj7RWZFaotxQRk1D+N0y2xNrO4ft6mS+hrJ/+ybp1XTGdtlkpUDKjiTZkV7Z4fq9J0jtijvtxRfcPhjia50IIHtZ28wVBMCCwYzh5pR15F/XbvKCc= lillian@EDI"
|
|
|
|
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIC7+LEQnC/nlYp7nQ4p6hUCqaGiqfsA3Mg8bSy+zA8Fj lillian@GLaDOS"
|
|
|
|
|
];
|
|
|
|
|
isNormalUser = true;
|
|
|
|
|
extraGroups = ["sudo" "networkmanager" "wheel" "vboxsf"];
|
|
|
|
|
shell = pkgs.zsh;
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
home-manager = {
|
|
|
|
|
extraSpecialArgs = {inherit inputs outputs;};
|
|
|
|
|
users = {
|
|
|
|
|
# Import your home-manager configuration
|
|
|
|
|
lillian = import ../../../home-manager/hosts/wheatley/wheatley-Lillian.nix;
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
2024-01-11 14:51:11 +01:00
|
|
|
|
networking.hostName = "wheatley"; # Define your hostname
|
|
|
|
|
|
2024-01-14 15:58:21 +01:00
|
|
|
|
networking.wireless.interfaces = ["enu1u1"];
|
2024-01-11 14:51:11 +01:00
|
|
|
|
|
|
|
|
|
# powerManagement.cpuFreqGovernor = "powersave";
|
|
|
|
|
powerManagement.cpufreq.max = 648000;
|
2024-01-08 15:58:04 +01:00
|
|
|
|
|
2024-01-11 14:51:11 +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
|
|
|
|
}
|