2024-07-26 22:12:48 +02:00
|
|
|
{ inputs, lib, ... }:
|
2023-10-13 15:00:30 +02:00
|
|
|
{
|
2023-01-21 17:30:50 +01:00
|
|
|
imports = [
|
2023-08-26 14:01:58 +02:00
|
|
|
inputs.nixos-hardware.nixosModules.common-cpu-intel
|
2024-05-03 21:43:11 +02:00
|
|
|
# for some reasons the cpu-intel includes the gpu as well
|
|
|
|
# for just cpu you should include cpu-intel/cpu-only.nix
|
|
|
|
#inputs.nixos-hardware.nixosModules.common-gpu-intel
|
2023-08-26 14:01:58 +02:00
|
|
|
inputs.nixos-hardware.nixosModules.common-pc-laptop
|
|
|
|
inputs.nixos-hardware.nixosModules.common-pc-laptop-ssd
|
2023-05-18 06:57:58 +02:00
|
|
|
|
2024-04-11 23:11:53 +02:00
|
|
|
../../config/basic
|
2023-09-23 20:40:20 +02:00
|
|
|
|
2024-10-30 19:24:16 +01:00
|
|
|
../../config/support/bluetooth.nix
|
|
|
|
../../config/support/laptop.nix
|
|
|
|
../../config/support/nvidia.nix
|
|
|
|
../../config/support/physical.nix
|
|
|
|
../../config/support/pipewire.nix
|
|
|
|
../../config/support/prime-offload.nix
|
|
|
|
../../config/support/printing.nix
|
|
|
|
../../config/support/secureboot.nix
|
|
|
|
../../config/support/yubikey.nix
|
|
|
|
../../config/support/zfs.nix
|
2023-01-28 02:50:14 +01:00
|
|
|
|
2023-05-18 06:57:58 +02:00
|
|
|
./net.nix
|
|
|
|
./fs.nix
|
2023-05-18 11:47:55 +02:00
|
|
|
|
2024-10-31 15:08:15 +01:00
|
|
|
../../users/patrick
|
2023-05-18 06:57:58 +02:00
|
|
|
];
|
2023-09-23 20:40:20 +02:00
|
|
|
stylix.fonts.sizes = {
|
|
|
|
terminal = 9;
|
|
|
|
applications = 9;
|
|
|
|
desktop = 8;
|
|
|
|
};
|
2024-06-10 14:49:28 +02:00
|
|
|
services = {
|
|
|
|
xserver.xkb = {
|
2024-03-24 21:06:11 +01:00
|
|
|
layout = "de";
|
|
|
|
};
|
2023-10-13 15:00:30 +02:00
|
|
|
libinput = {
|
2024-07-26 22:12:48 +02:00
|
|
|
touchpad = lib.mkForce { accelSpeed = "0.5"; };
|
2023-10-13 15:00:30 +02:00
|
|
|
};
|
2023-10-06 22:01:50 +02:00
|
|
|
};
|
2024-06-09 20:59:23 +02:00
|
|
|
nixpkgs.hostPlatform = "x86_64-linux";
|
2024-07-26 22:12:48 +02:00
|
|
|
nix.settings.system-features = [
|
|
|
|
"kvm"
|
|
|
|
"nixos-test"
|
|
|
|
];
|
2023-01-21 17:30:50 +01:00
|
|
|
}
|