Files
nixos-config/nixos-configurations/pc/default.nix
2023-06-01 23:51:51 +02:00

27 lines
435 B
Nix

{ config, pkgs, ... }:
{
imports =
[
./hardware-configuration.nix
../shared.nix
];
networking.hostName = "pc";
services.xserver = {
enable = true;
desktopManager.gnome.enable = true;
displayManager.gdm.enable = true;
};
home-manager.users.thiloho = { pkgs, ... }: {
programs.git = {
signing = {
key = "29791D54E85BEE9E";
};
};
};
}