nix-configs/hosts/catbook-j/configuration.nix

113 lines
3 KiB
Nix
Raw Normal View History

2023-09-08 23:10:22 +00: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).
{
config,
pkgs,
lib,
...
}: {
nixpkgs.config.permittedInsecurePackages = [
"electron-25.9.0"
2024-07-30 20:06:36 +00:00
"electron-27.3.11"
];
imports = [
# Include the results of the hardware scan.
./hardware-configuration.nix
../../common.nix
../../modules
2024-03-06 10:31:47 +00:00
./modules
];
2023-09-08 23:10:22 +00:00
jade = {
desktop = {
syncthing.enable = true;
kdeconnect.enable = true;
cloud.enable = true;
social.enable = true;
mail.enable = true;
gaming.enable = true;
};
2023-09-08 23:10:22 +00:00
};
2023-11-07 07:05:47 +00:00
2024-06-17 15:22:03 +00:00
security.pam.services.swaylock = {};
2023-11-07 07:05:47 +00:00
hardware.usb-modeswitch.enable = true;
2023-10-28 20:25:06 +00:00
systemd.services."ModemManager".enable = true;
systemd.services."ModemManager".wants = ["NetworkManager.service"];
systemd.services."ModemManager".wantedBy = ["multi-user.target"];
2023-11-07 07:05:47 +00:00
2024-02-27 17:18:08 +00:00
environment.variables = {
VDPAU_DRIVER = lib.mkIf config.hardware.opengl.enable (lib.mkDefault "va_gl");
2024-04-16 20:06:12 +00:00
S10E_JRNL_FILE_LOC = "/home/jade/Docs/jrnl.md";
2024-02-27 17:18:08 +00:00
};
hardware.opengl = {
enable = true;
extraPackages = with pkgs; [
intel-ocl
intel-media-driver
intel-vaapi-driver
intel-compute-runtime
libvdpau-va-gl
mesa.drivers
];
};
2023-10-28 20:25:06 +00:00
programs.wireshark.enable = true;
2023-09-08 23:10:22 +00:00
boot.resumeDevice = "/dev/disk/by-uuid/4f9e8afa-f8d7-40bf-b3ea-17e8e8fbb694";
boot.kernelParams = ["resume_offset=7380652"];
2023-09-08 23:10:22 +00:00
boot.binfmt.emulatedSystems = ["aarch64-linux"];
2023-09-08 23:10:22 +00:00
hardware.bluetooth.enable = true;
services.blueman.enable = true;
2024-02-06 18:32:18 +00:00
environment.systemPackages = [
pkgs.plantuml
pkgs.mqttui
pkgs.mobile-broadband-provider-info
pkgs.modem-manager-gui
pkgs.wireshark
];
2023-09-08 23:10:22 +00: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 17:24:42 +00:00
boot.kernelPackages = pkgs.linuxPackages_zen;
2024-05-06 19:32:14 +00:00
services.displayManager.autoLogin = {
2023-09-08 23:10:22 +00:00
enable = true;
user = "jade";
};
# networking
2023-09-08 23:10:22 +00:00
networking.networkmanager.enable = true;
networking.hostName = "catbook-j";
2024-02-13 20:22:25 +00:00
2023-09-08 23:10:22 +00:00
i18n.extraLocaleSettings = {
LC_ADDRESS = "de_DE.UTF-8";
LC_IDENTIFICATION = "de_DE.UTF-8";
LC_MEASUREMENT = "de_DE.UTF-8";
LC_MONETARY = "de_DE.UTF-8";
LC_NAME = "de_DE.UTF-8";
LC_NUMERIC = "de_DE.UTF-8";
LC_PAPER = "de_DE.UTF-8";
LC_TELEPHONE = "de_DE.UTF-8";
LC_TIME = "de_DE.UTF-8";
};
2023-11-14 12:43:01 +00:00
2023-09-08 23:10:22 +00: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. Its 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?
}