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

23 lines
356 B
Nix
Raw Normal View History

2023-06-12 13:49:43 +02:00
{ ... }:
{
imports = [
./hardware-configuration.nix
2023-07-02 00:18:17 +02:00
../shared-desktop.nix
../shared.nix
];
networking.hostName = "pc";
2023-05-25 11:40:57 +02:00
2023-06-12 19:49:59 +02:00
home-manager.users.thiloho = { pkgs, lib, ... }: {
2023-06-12 13:49:43 +02:00
programs.git = {
signing = {
2023-06-25 16:14:44 +02:00
key = "A6C6D25B9687377B";
2023-06-05 17:00:34 +02:00
};
};
2023-06-24 21:36:20 +00:00
home.stateVersion = "23.05";
};
2023-06-24 21:36:20 +00:00
system.stateVersion = "23.05";
}