myNixosFlake/nixos/configuration.nix

40 lines
851 B
Nix
Raw Normal View History

2024-10-14 18:43:31 +03:00
# 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
2024-11-10 15:05:34 +03:00
2024-11-10 14:52:19 +03:00
./user_modules.nix
2024-10-14 18:43:31 +03:00
./system-packages.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;
2024-12-18 22:06:27 +03:00
programs.virt-manager.enable = true;
users.groups.libvirtd.members = ["ficache"];
virtualisation.libvirtd.enable = true;
virtualisation.spiceUSBRedirection.enable = true;
2024-10-14 18:43:31 +03:00
}