nixos-configs/nixosConfigurations/vinzenz-lpt2/default.nix

69 lines
1.6 KiB
Nix
Raw Normal View History

2025-12-11 22:13:32 +01:00
{ self, ... }:
{
imports = [
2025-09-14 13:09:37 +02:00
./hardware.nix
2025-12-11 22:13:32 +01:00
self.nixosModules.user-vinzenz
self.nixosModules.gnome
self.nixosModules.wine-gaming
self.nixosModules.steam
self.nixosModules.podman
self.nixosModules.vinzenz-desktop-settings
self.nixosModules.intel-graphics
self.nixosModules.secure-boot
];
config = {
nix.settings.extra-platforms = [
"aarch64-linux"
"i686-linux"
];
services.xserver.xkb = {
# Configure keymap in X11
layout = "de";
variant = "";
};
# Configure console keymap
console.keyMap = "de";
users.users.vinzenz.openssh.authorizedKeys.keys = [
''ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIFCJUpbpB3KEKVoKWsKoar9J4RNah8gmQoSH6jQEw5dY vinzenz-pixel-JuiceSSH''
''ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIO1CRn4yYTL4XUdCebE8Z4ZeuMujBjorTdWifg911EOv vinzenz-pc2 home roaming''
];
#users.users.ronja.openssh.authorizedKeys.keys = [
# ''ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIALWKm+d6KL6Vl3grPOcGouiNTkvdhXuWJmcrdEBY2nw ronja-ssh-host-key''
#];
programs = {
adb.enable = true;
light = {
enable = true;
brightnessKeys = {
enable = true;
step = 5;
};
};
};
networking.firewall.allowedTCPPorts = [
8776
1337
];
2025-10-12 15:16:44 +02:00
services.servicepoint-tanks = {
2025-10-23 21:17:58 +02:00
enable = false;
2025-10-12 15:16:44 +02:00
urls = [
"http://localhost:5666"
"http://localhost:5667"
];
};
2025-10-23 21:36:15 +02:00
nixpkgs.config.permittedInsecurePackages = [
"mbedtls-2.28.10"
];
2026-01-03 18:45:55 +01:00
boot.binfmt.emulatedSystems = [ "aarch64-linux" ];
};
}