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

12 lines
213 B
Nix

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