nixos/parts/hosts/laptop/configuration.nix

14 lines
239 B
Nix
Raw Normal View History

2025-02-03 07:55:17 +01:00
{...}: {
imports = [
../../modules/base.nix
../../modules/shell.nix
../../modules/graphical.nix
];
config = {
user.username = "nickolaj";
networking.hostName = "laptop";
system.stateVersion = "24.11";
};
}