mirror of
https://github.com/larstvei/nix-config.git
synced 2025-09-16 03:50:12 +00:00
22 lines
385 B
Nix
22 lines
385 B
Nix
{
|
|
imports = [
|
|
./keyboard
|
|
./hardware
|
|
../../modules/base
|
|
../../modules/nixos
|
|
];
|
|
|
|
home-manager.users.larstvei.imports = [
|
|
../../modules/home/full
|
|
../../modules/desktop
|
|
];
|
|
|
|
networking.hostName = "larstvei-think";
|
|
|
|
# Bootloader.
|
|
boot.loader.systemd-boot.enable = true;
|
|
boot.loader.efi.canTouchEfiVariables = true;
|
|
|
|
system.stateVersion = "25.05";
|
|
}
|