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

22 lines
378 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, ... }: {
2023-07-15 18:37:17 +02:00
# programs.git = {
# signing = {
# key = "11BA77C2BDCEBF6A";
# };
# };
2023-07-02 00:18:17 +02:00
home.stateVersion = "23.05";
};
2023-07-02 00:18:17 +02:00
system.stateVersion = "23.05";
}