Files
nixos/hosts/minoxy-workstation/configuration.nix
2025-08-30 21:19:51 +02:00

42 lines
809 B
Nix

{ pkgs, ... }:
{
imports = [
./hardware-configuration.nix
./../../user/users.nix
./../../modules/common.nix
./../../modules/hardware/xremap.nix
./../../modules/hardware/nvidia.nix
];
networking.hostName = "minoxy";
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;
environment.systemPackages = with pkgs; [
(blender.override {
cudaSupport = 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";
}