dotfiles/hosts/nixos-desktop/default.nix

112 lines
2.7 KiB
Nix
Raw Normal View History

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).
{ pkgs
2022-07-15 13:11:54 +02:00
, ...
}:
{
imports = [
# Include the results of the hardware scan.
./hardware-configuration.nix
2023-12-08 19:19:56 +01:00
./disko.nix
];
2023-05-11 17:33:14 +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;
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" ];
};
services.wallpaper.enable = true;
programs.ledger.enable = true;
};
2022-11-26 16:02:02 +01:00
2023-05-27 12:01:06 +02:00
home-manager.users.moritz.home.packages = with pkgs; [
anki
2023-05-27 12:01:06 +02: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;
2023-07-24 18:46:35 +02:00
2023-09-27 12:38:41 +02:00
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
kernelPackages = pkgs.linuxPackages_latest;
# 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";
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
};
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. 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).
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
}