myNixosFlake/nixos/configuration.nix
2024-11-10 14:52:19 +03:00

33 lines
785 B
Nix
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Help is available in the configuration.nix(5) man page
# and in the NixOS manual (accessible by running nixos-help).
{ ... }:
{
imports =
[ # Include the results of the hardware scan.
./hardware-configuration.nix
./modules/minimal/bundle.nix # minimal bundle to run pc
./user_modules.nix
./modules/hardware/nvidia.nix
./modules/hardware/battery-threshold.nix
./system-packages.nix
./modules/desktop-enviroments/plasma6.nix
];
disabledModules = [
./modules/xkb-settings.nix
];
nix.settings.experimental-features = [ "nix-command" "flakes" ];
time.timeZone = "Europe/Moscow";
system.stateVersion = "24.05"; # Did you read the comment?
services.gvfs.enable = true;
services.udisks2.enable = true;
}