mirror of
https://github.com/larstvei/nix-config.git
synced 2026-03-04 05:00:12 +00:00
21 lines
365 B
Nix
21 lines
365 B
Nix
{ self, ... }:
|
|
{
|
|
imports = [
|
|
./hardware
|
|
self.nixosModules.base
|
|
self.nixosModules.nixos
|
|
];
|
|
|
|
home-manager.users.larstvei.imports = [
|
|
self.homeModules.minimal
|
|
];
|
|
|
|
networking.hostName = "larstvei-vm";
|
|
|
|
# Bootloader.
|
|
boot.loader.systemd-boot.enable = true;
|
|
boot.loader.efi.canTouchEfiVariables = true;
|
|
|
|
system.stateVersion = "25.11";
|
|
}
|