Files
nixos-config/nixos-configurations/tvpc/default.nix

19 lines
320 B
Nix
Raw Normal View History

2023-08-25 07:28:22 +02:00
{ ... }:
{
imports = [
./hardware-configuration.nix
../shared-desktop.nix
../shared.nix
];
networking.hostName = "tvpc";
home-manager.users.thiloho = { pkgs, lib, ... }: {
2023-08-25 09:40:45 +02:00
programs.git.signing.key = "5ECD00BDC15A987E";
2023-08-25 07:28:22 +02:00
home.stateVersion = "23.05";
};
system.stateVersion = "23.05";
}