27 lines
628 B
Nix
27 lines
628 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
self,
|
|
...
|
|
}: {
|
|
imports = [
|
|
./disko.nix
|
|
./hardware-configuration.nix
|
|
./vfio.nix
|
|
../../modules/nixos/networking/default.nix
|
|
../../modules/nixos/virtualization/default.nix
|
|
../../modules/nixos/common.nix
|
|
../../modules/nixos/fonts.nix
|
|
../../modules/nixos/services.nix
|
|
../../modules/nixos/users/tulg.nix
|
|
];
|
|
programs.hyprland = {
|
|
enable = true;
|
|
xwayland.enable = true;
|
|
};
|
|
boot.loader.systemd-boot.enable = true;
|
|
boot.loader.efi.canTouchEfiVariables = true;
|
|
networking.hostName = "virgil";
|
|
|
|
system.stateVersion = "25.05"; # Did you read the comment?
|
|
}
|