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

22 lines
368 B
Nix
Raw Normal View History

2023-06-15 16:45:30 +02:00
{ pkgs, config, ... }:
{
imports = [
./hardware-configuration.nix
2023-07-02 00:18:17 +02:00
../shared-desktop.nix
../shared.nix
];
networking.hostName = "laptop";
2023-05-11 15:36:33 +02:00
home-manager.users.thiloho = { pkgs, ... }: {
programs.git = {
signing = {
2023-06-15 16:45:30 +02:00
key = "11BA77C2BDCEBF6A";
2023-05-25 11:40:57 +02:00
};
};
2023-07-02 00:18:17 +02:00
home.stateVersion = "23.05";
};
2023-07-02 00:18:17 +02:00
system.stateVersion = "23.05";
}