Files
nixos/hosts/nixos-desktop/default.nix
2026-06-19 05:47:33 +02:00

28 lines
709 B
Nix

{ pkgs, ... }:
{
imports = [
./hardware-configuration.nix
./disko.nix
../../modules/system/boot.nix
../../modules/system/locale.nix
../../modules/system/network.nix
../../modules/system/users.nix
../../modules/desktop/hyprland.nix
../../modules/desktop/audio.nix
../../modules/desktop/fonts.nix
../../modules/hardware/amd-gpu.nix
../../modules/hardware/ollama.nix
../../modules/system/packages.nix
../../modules/system/nfs.nix
../../modules/desktop/packages.nix
../../modules/desktop/gaming.nix
];
networking.hostName = "nixos-desktop";
nix.settings.experimental-features = [ "nix-command" "flakes" ];
system.stateVersion = "25.11";
}