mirror of
https://github.com/nickolaj-jepsen/nixos.git
synced 2026-01-22 08:06:50 +01:00
13 lines
239 B
Nix
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";
|
|
};
|
|
}
|