mirror of
https://github.com/Ascyii/nixos.git
synced 2026-01-01 06:44:26 -05:00
34 lines
661 B
Nix
34 lines
661 B
Nix
{ ... }:
|
|
|
|
{
|
|
imports = [
|
|
./hardware-configuration.nix
|
|
|
|
./../../user/users.nix
|
|
|
|
./../../modules/essential.nix
|
|
./../../modules/common/sops.nix
|
|
|
|
./../../modules/services/webdav.nix
|
|
./../../modules/services/ai.nix
|
|
|
|
./../../modules/graphics/workstation.nix
|
|
|
|
./../../modules/hardware/nvidia.nix
|
|
./../../modules/hardware/boot.nix
|
|
./../../modules/hardware/xremap.nix
|
|
];
|
|
|
|
networking.hostName = "minoxy";
|
|
enableCuda = true;
|
|
|
|
systemd.targets.sleep.enable = true;
|
|
systemd.targets.suspend.enable = true;
|
|
|
|
virtualisation.docker.enable = true;
|
|
virtualisation.docker.storageDriver = "btrfs";
|
|
|
|
# Never change this!
|
|
system.stateVersion = "25.05";
|
|
}
|