dotfiles/configs/thilo-pc/nixos.nix

47 lines
1.1 KiB
Nix
Raw Normal View History

2023-10-28 23:16:29 +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).
2024-02-27 02:54:02 +01:00
{ pkgs, ... }:
2023-10-28 23:16:29 +02:00
{
imports = [
# Include the results of the hardware scan.
./hardware-configuration.nix
2023-11-11 21:52:08 +01:00
./../../nixos/common.nix
2023-10-28 23:16:29 +02:00
];
# Bootloader.
2024-02-27 02:54:02 +01:00
boot = {
loader = {
systemd-boot = {
enable = true;
extraInstallCommands = ''
${pkgs.gnused}/bin/sed -i "/default/c\default @saved" /boot/loader/loader.conf
'';
};
efi.canTouchEfiVariables = true;
};
kernelPackages = pkgs.linuxPackages_latest;
};
2023-10-28 23:16:29 +02:00
networking.hostName = "thilo-pc";
# Enable the X11 windowing system.
services = {
xserver = {
enable = true;
displayManager.sddm.enable = true;
2023-10-30 23:12:09 +01:00
displayManager.defaultSession = "plasmawayland";
2023-10-28 23:16:29 +02:00
desktopManager.plasma5.enable = true;
layout = "us";
xkbVariant = "";
};
};
2023-11-14 02:40:28 +01:00
hardware.opengl = {
2024-02-27 02:54:02 +01:00
extraPackages = with pkgs; [ vaapiVdpau libvdpau-va-gl ];
2023-11-14 02:40:28 +01:00
};
2023-10-28 23:16:29 +02:00
system.stateVersion = "23.05";
}