nixos/parts/hosts/laptop/configuration.nix
2025-02-04 07:53:18 +01:00

13 lines
239 B
Nix

{...}: {
imports = [
../../modules/base.nix
../../modules/shell.nix
../../modules/graphical.nix
];
config = {
user.username = "nickolaj";
networking.hostName = "laptop";
system.stateVersion = "24.11";
};
}