Files
nixos-config/nixos-configurations/laptop/default.nix
2023-07-15 18:37:17 +02:00

22 lines
378 B
Nix

{ pkgs, config, ... }:
{
imports = [
./hardware-configuration.nix
../shared-desktop.nix
../shared.nix
];
networking.hostName = "laptop";
home-manager.users.thiloho = { pkgs, ... }: {
# programs.git = {
# signing = {
# key = "11BA77C2BDCEBF6A";
# };
# };
home.stateVersion = "23.05";
};
system.stateVersion = "23.05";
}