24 lines
578 B
Nix
24 lines
578 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
./hardware-configuration.nix
|
|
../../modules/system/boot.nix
|
|
../../modules/system/locale.nix
|
|
../../modules/system/network.nix
|
|
../../modules/system/users.nix
|
|
../../modules/system/packages.nix
|
|
../../modules/system/nfs.nix
|
|
../../modules/desktop/hyprland.nix
|
|
../../modules/desktop/audio.nix
|
|
../../modules/desktop/fonts.nix
|
|
../../modules/desktop/packages.nix
|
|
];
|
|
|
|
networking.hostName = "nixos-laptop";
|
|
|
|
nix.settings.experimental-features = [ "nix-command" "flakes" ];
|
|
|
|
system.stateVersion = "25.11";
|
|
}
|