mirror of
https://github.com/thiloho/nixos-config.git
synced 2025-11-22 03:21:35 +01:00
24 lines
472 B
Nix
24 lines
472 B
Nix
{ inputs, pkgs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
inputs.nixos-hardware.nixosModules.lenovo-thinkpad-t480s
|
|
./hardware-configuration.nix
|
|
../shared-desktop.nix
|
|
../shared.nix
|
|
];
|
|
|
|
networking.hostName = "laptop";
|
|
|
|
services.mysql = {
|
|
enable = true;
|
|
package = pkgs.mariadb;
|
|
};
|
|
|
|
home-manager.users.thiloho = { pkgs, ... }: {
|
|
programs.git.signing.key = "5CF074CA31DD6686";
|
|
home = { stateVersion = "23.05"; };
|
|
};
|
|
system.stateVersion = "23.05";
|
|
}
|