28 lines
709 B
Nix
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";
|
|
}
|