44 lines
860 B
Nix
44 lines
860 B
Nix
{
|
|
inputs,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
imports = with inputs; [
|
|
self.nixosModules.desktop
|
|
self.nixosModules.system
|
|
./boot
|
|
./disko
|
|
./facter
|
|
./networking.nix
|
|
./nix
|
|
./programs.nix
|
|
./services.nix
|
|
./sops.nix
|
|
./users.nix
|
|
./minecraft.nix
|
|
];
|
|
|
|
desktop.niri.enable = true;
|
|
environment.memoryAllocator.provider = "mimalloc";
|
|
locale.ukrainian.enable = true;
|
|
module.stylix = {
|
|
enable = true;
|
|
theme = "helios";
|
|
};
|
|
opentabletdriver.enable = false;
|
|
qmk-vial.enable = true;
|
|
security.basic.enable = true;
|
|
system.stateVersion = "25.05";
|
|
time.timeZone = "Europe/Kyiv";
|
|
virtual.libvirt.enable = true;
|
|
wireless = {
|
|
bluetooth.enable = true;
|
|
bluetooth.enableBlueman = false;
|
|
};
|
|
hardware.graphics.extraPackages = with pkgs; [
|
|
intel-compute-runtime
|
|
intel-media-driver
|
|
vpl-gpu-rt
|
|
];
|
|
}
|