mirror of
https://github.com/larstvei/nix-config.git
synced 2025-12-31 12:10:12 +00:00
22 lines
408 B
Nix
22 lines
408 B
Nix
{
|
|
imports = [
|
|
./hardware
|
|
../../modules/base
|
|
../../modules/nixos
|
|
# ../../modules/nixos-graphical
|
|
];
|
|
|
|
home-manager.users.larstvei.imports = [
|
|
../../modules/home/minimal
|
|
# ../../modules/desktop
|
|
];
|
|
|
|
networking.hostName = "larstvei-vm";
|
|
|
|
# Bootloader.
|
|
boot.loader.systemd-boot.enable = true;
|
|
boot.loader.efi.canTouchEfiVariables = true;
|
|
|
|
system.stateVersion = "25.11";
|
|
}
|