mirror of
https://github.com/larstvei/nix-config.git
synced 2025-10-13 14:30:12 +00:00
24 lines
426 B
Nix
24 lines
426 B
Nix
{
|
|
imports = [
|
|
./keyboard
|
|
./hardware
|
|
../../modules/base
|
|
../../modules/nixos
|
|
];
|
|
|
|
home-manager.users.larstvei.imports = [
|
|
../../modules/home/full
|
|
../../modules/desktop
|
|
];
|
|
|
|
security.pam.services.hyprlock = { };
|
|
|
|
networking.hostName = "larstvei-think";
|
|
|
|
# Bootloader.
|
|
boot.loader.systemd-boot.enable = true;
|
|
boot.loader.efi.canTouchEfiVariables = true;
|
|
|
|
system.stateVersion = "25.05";
|
|
}
|