Files
nixos-config/nixos-configurations/tvpc/default.nix
2023-08-25 07:28:22 +02:00

18 lines
269 B
Nix

{ ... }:
{
imports = [
./hardware-configuration.nix
../shared-desktop.nix
../shared.nix
];
networking.hostName = "tvpc";
home-manager.users.thiloho = { pkgs, lib, ... }: {
home.stateVersion = "23.05";
};
system.stateVersion = "23.05";
}