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