2021-09-29 13:06:28 +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’).
|
2023-04-10 15:12:45 +02:00
|
|
|
|
{ pkgs
|
2024-01-30 21:42:54 +01:00
|
|
|
|
, config
|
2022-07-15 13:11:54 +02:00
|
|
|
|
, ...
|
2023-04-10 15:12:45 +02:00
|
|
|
|
}:
|
|
|
|
|
|
|
|
|
|
{
|
2021-10-03 12:29:45 +02:00
|
|
|
|
imports = [
|
|
|
|
|
# Include the results of the hardware scan.
|
|
|
|
|
./hardware-configuration.nix
|
2023-12-08 19:19:56 +01:00
|
|
|
|
./disko.nix
|
2021-10-03 12:29:45 +02:00
|
|
|
|
];
|
2023-05-11 17:33:14 +02:00
|
|
|
|
|
2023-04-16 17:56:43 +02:00
|
|
|
|
my = {
|
2023-05-11 17:33:14 +02:00
|
|
|
|
profiles = {
|
|
|
|
|
desktop.enable = true;
|
|
|
|
|
gaming.enable = true;
|
|
|
|
|
personal.enable = true;
|
2023-12-08 19:19:56 +01:00
|
|
|
|
impermanence.enable = true;
|
2024-03-21 18:47:46 +01:00
|
|
|
|
webis.enable = true;
|
2023-05-11 17:33:14 +02:00
|
|
|
|
};
|
2023-09-22 10:14:12 +02:00
|
|
|
|
programs.hyprland = {
|
|
|
|
|
nvidiaSupport = true;
|
|
|
|
|
monitors = [ "HDMI-A-1,3840x2160,auto,1.2" ",preferred,auto,1" ];
|
|
|
|
|
extraConfig = "exec=hyprctl keyword monitor HDMI-A-1,3840x2160@120,auto,1.2";
|
|
|
|
|
keyboardLayouts = [ "us" "de" ];
|
|
|
|
|
};
|
2024-03-21 18:47:46 +01:00
|
|
|
|
programs.exercism.enable = true;
|
2023-09-22 10:14:12 +02:00
|
|
|
|
services.wallpaper.enable = true;
|
2023-04-16 17:56:43 +02:00
|
|
|
|
};
|
2022-11-26 16:02:02 +01:00
|
|
|
|
|
2023-05-27 12:01:06 +02:00
|
|
|
|
home-manager.users.moritz.home.packages = with pkgs; [
|
2023-11-01 12:03:45 +01:00
|
|
|
|
anki
|
2024-01-05 13:26:19 +01:00
|
|
|
|
calibre
|
2023-05-27 12:01:06 +02:00
|
|
|
|
];
|
2023-11-01 12:03:45 +01:00
|
|
|
|
|
2023-09-27 12:38:41 +02:00
|
|
|
|
hardware = {
|
|
|
|
|
keyboard.qmk.enable = true;
|
|
|
|
|
nvidia.modesetting.enable = true;
|
|
|
|
|
opengl = {
|
|
|
|
|
enable = true;
|
|
|
|
|
driSupport32Bit = true;
|
|
|
|
|
driSupport = true;
|
|
|
|
|
};
|
2023-05-27 12:01:06 +02:00
|
|
|
|
|
2023-09-27 12:38:41 +02:00
|
|
|
|
# sensors
|
|
|
|
|
enableAllFirmware = true;
|
|
|
|
|
bluetooth.enable = true;
|
|
|
|
|
};
|
2022-08-20 14:13:51 +02:00
|
|
|
|
|
2021-09-29 13:06:28 +02:00
|
|
|
|
boot = {
|
2023-09-27 12:38:41 +02:00
|
|
|
|
# KERNEL
|
2024-01-30 21:42:54 +01:00
|
|
|
|
kernelPackages = config.boot.zfs.package.latestCompatibleLinuxPackages; # NOTE: use latest zfs compatible kernel
|
2023-09-27 12:38:41 +02:00
|
|
|
|
|
|
|
|
|
# BOOT
|
2023-12-08 19:19:56 +01:00
|
|
|
|
supportedFilesystems = [ "zfs" "btrfs" "ntfs" ];
|
2023-12-10 17:08:27 +01:00
|
|
|
|
loader = {
|
|
|
|
|
systemd-boot.enable = true;
|
|
|
|
|
efi.canTouchEfiVariables = true;
|
|
|
|
|
};
|
2023-09-27 12:38:41 +02:00
|
|
|
|
kernelModules = [ "lm92" "drivetemp" ];
|
2021-09-29 13:06:28 +02:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
# NETWORKING
|
|
|
|
|
networking = {
|
|
|
|
|
hostName = "nixos-desktop";
|
2022-01-09 14:15:39 +01:00
|
|
|
|
defaultGateway = "192.168.0.1";
|
|
|
|
|
nameservers = [ "192.168.0.4" ];
|
2021-09-29 13:06:28 +02:00
|
|
|
|
useDHCP = false;
|
2022-02-11 22:21:04 +01:00
|
|
|
|
interfaces.enp42s0 = {
|
2022-07-15 13:11:54 +02:00
|
|
|
|
ipv4.addresses = [
|
|
|
|
|
{
|
|
|
|
|
address = "192.168.0.14";
|
|
|
|
|
prefixLength = 24;
|
|
|
|
|
}
|
|
|
|
|
];
|
|
|
|
|
ipv6.addresses = [
|
|
|
|
|
{
|
|
|
|
|
address = "fe80::60fb:ffc:df6f:e29e";
|
|
|
|
|
prefixLength = 64;
|
|
|
|
|
}
|
|
|
|
|
];
|
2022-02-11 22:21:04 +01:00
|
|
|
|
};
|
2023-07-29 17:03:23 +02:00
|
|
|
|
networkmanager.enable = true;
|
2021-09-29 13:06:28 +02:00
|
|
|
|
};
|
2023-09-27 12:38:41 +02:00
|
|
|
|
services = {
|
|
|
|
|
xserver.videoDrivers = [ "nvidia" ];
|
|
|
|
|
xserver.xrandrHeads = [
|
|
|
|
|
{ output = "HDMI-1"; }
|
|
|
|
|
{
|
|
|
|
|
output = "HDMI-0";
|
|
|
|
|
primary = true;
|
|
|
|
|
}
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
# Powersaving
|
|
|
|
|
tlp.enable = true;
|
2022-08-20 14:13:51 +02:00
|
|
|
|
};
|
2021-10-03 12:29:45 +02:00
|
|
|
|
|
2022-03-30 10:56:41 +02:00
|
|
|
|
console.keyMap = "de";
|
2021-09-29 13:06:28 +02:00
|
|
|
|
powerManagement.enable = true;
|
2022-07-15 10:55:11 +02:00
|
|
|
|
environment.systemPackages = with pkgs; [ lm_sensors ];
|
2022-08-20 14:17:16 +02:00
|
|
|
|
|
2021-09-29 13:06:28 +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).
|
2022-08-20 14:14:21 +02:00
|
|
|
|
system.stateVersion = "22.05"; # Did you read the comment?
|
2021-09-29 13:06:28 +02:00
|
|
|
|
}
|