2023-09-09 01:10:22 +02: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’).
|
2025-04-11 09:20:46 +02:00
|
|
|
|
{ pkgs, ... }:
|
|
|
|
|
{
|
2023-12-10 23:21:45 +01:00
|
|
|
|
nixpkgs.config.permittedInsecurePackages = [
|
|
|
|
|
"electron-25.9.0"
|
2024-07-30 22:06:36 +02:00
|
|
|
|
"electron-27.3.11"
|
2023-12-10 23:21:45 +01:00
|
|
|
|
];
|
2023-11-26 21:26:49 +01:00
|
|
|
|
imports = [
|
|
|
|
|
# Include the results of the hardware scan.
|
|
|
|
|
./hardware-configuration.nix
|
|
|
|
|
../../common.nix
|
|
|
|
|
../../modules
|
2024-03-06 11:31:47 +01:00
|
|
|
|
./modules
|
2023-11-26 21:26:49 +01:00
|
|
|
|
];
|
2023-09-09 01:10:22 +02:00
|
|
|
|
jade = {
|
2024-08-01 08:17:09 +02:00
|
|
|
|
hwKey.pamAuth.enable = true;
|
2023-09-09 01:10:22 +02:00
|
|
|
|
desktop = {
|
2024-08-01 08:07:17 +02:00
|
|
|
|
dm.autoLogin = {
|
|
|
|
|
enable = true;
|
|
|
|
|
delay = 5;
|
|
|
|
|
};
|
2023-09-09 01:10:22 +02:00
|
|
|
|
syncthing.enable = true;
|
|
|
|
|
kdeconnect.enable = true;
|
|
|
|
|
social.enable = true;
|
|
|
|
|
gaming.enable = true;
|
2024-03-05 13:10:08 +01:00
|
|
|
|
};
|
2023-09-09 01:10:22 +02:00
|
|
|
|
};
|
2023-11-07 08:05:47 +01:00
|
|
|
|
|
2025-04-11 09:20:46 +02:00
|
|
|
|
security.pam.services.swaylock = { };
|
2024-06-17 17:22:03 +02:00
|
|
|
|
|
2023-11-07 08:05:47 +01:00
|
|
|
|
hardware.usb-modeswitch.enable = true;
|
2023-10-28 22:25:06 +02:00
|
|
|
|
systemd.services."ModemManager".enable = true;
|
2025-04-11 09:20:46 +02:00
|
|
|
|
systemd.services."ModemManager".wants = [ "NetworkManager.service" ];
|
|
|
|
|
systemd.services."ModemManager".wantedBy = [ "multi-user.target" ];
|
2023-11-07 08:05:47 +01:00
|
|
|
|
|
2023-10-28 22:25:06 +02:00
|
|
|
|
programs.wireshark.enable = true;
|
2023-09-09 01:10:22 +02:00
|
|
|
|
|
|
|
|
|
boot.resumeDevice = "/dev/disk/by-uuid/4f9e8afa-f8d7-40bf-b3ea-17e8e8fbb694";
|
2025-04-11 09:20:46 +02:00
|
|
|
|
boot.kernelParams = [ "resume_offset=7380652" ];
|
2023-09-09 01:10:22 +02:00
|
|
|
|
|
2025-04-11 09:20:46 +02:00
|
|
|
|
boot.binfmt.emulatedSystems = [ "aarch64-linux" ];
|
2023-09-09 01:10:22 +02:00
|
|
|
|
|
|
|
|
|
services.blueman.enable = true;
|
|
|
|
|
|
2024-02-06 19:32:18 +01:00
|
|
|
|
environment.systemPackages = [
|
|
|
|
|
pkgs.plantuml
|
|
|
|
|
pkgs.mqttui
|
|
|
|
|
pkgs.mobile-broadband-provider-info
|
|
|
|
|
pkgs.modem-manager-gui
|
|
|
|
|
pkgs.wireshark
|
|
|
|
|
];
|
2023-09-09 01:10:22 +02:00
|
|
|
|
|
|
|
|
|
# Bootloader.
|
|
|
|
|
boot.loader.systemd-boot.enable = true;
|
|
|
|
|
boot.loader.efi.canTouchEfiVariables = true;
|
|
|
|
|
|
|
|
|
|
# Setup keyfile
|
|
|
|
|
boot.initrd.secrets = {
|
|
|
|
|
"/crypto_keyfile.bin" = null;
|
|
|
|
|
};
|
|
|
|
|
|
2023-09-25 19:24:42 +02:00
|
|
|
|
boot.kernelPackages = pkgs.linuxPackages_zen;
|
2023-09-09 01:10:22 +02:00
|
|
|
|
|
2024-03-05 13:49:22 +01:00
|
|
|
|
# networking
|
2023-09-09 01:10:22 +02:00
|
|
|
|
networking.networkmanager.enable = true;
|
2024-11-28 08:42:49 +01:00
|
|
|
|
networking.hostName = "denkbrett";
|
2024-02-13 21:22:25 +01:00
|
|
|
|
|
2023-09-09 01:10:22 +02:00
|
|
|
|
# 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 = "23.05"; # Did you read the comment?
|
|
|
|
|
}
|