mirror of
https://github.com/thiloho/nixos-config.git
synced 2025-11-22 03:21:35 +01:00
19 lines
318 B
Nix
19 lines
318 B
Nix
{ ... }:
|
|
|
|
{
|
|
imports = [
|
|
./hardware-configuration.nix
|
|
../shared-desktop.nix
|
|
../shared.nix
|
|
];
|
|
|
|
networking.hostName = "pc";
|
|
|
|
home-manager.users.thiloho = { pkgs, lib, ... }: {
|
|
programs.git.signing.key = "1617CEF3B3EE7083";
|
|
home.stateVersion = "23.05";
|
|
};
|
|
system.stateVersion = "23.05";
|
|
}
|
|
|