Workstation module for graphics

This commit is contained in:
2025-08-31 04:59:17 +02:00
parent 7a7b3315d0
commit 0644a1a54f
6 changed files with 33 additions and 101 deletions

View File

@@ -1,17 +1,18 @@
{ pkgs, config, inputs, ... }:
{ ... }:
{
imports = [
./hardware-configuration.nix
./../../user/users.nix
./../../modules/common.nix
./../../modules/hardware/xremap.nix
./../../modules/services/webdav.nix
#./../../modules/hardware/nvidia.nix
./../../modules/graphics/workstation.nix
inputs.sops-nix.nixosModules.sops
./../../modules/hardware/nvidia.nix
];
networking.hostName = "minoxy";
@@ -19,20 +20,12 @@
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
services.xserver.displayManager.gdm.enable = true; # We are pre 25.11
systemd.targets.sleep.enable = true;
systemd.targets.suspend.enable = true;
virtualisation.docker.enable = true;
virtualisation.docker.storageDriver = "btrfs";
programs = {
hyprland.enable = true;
hyprlock.enable = true;
firefox.enable = true;
};
# Never change this!
system.stateVersion = "25.05";
}