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

25 lines
466 B
Nix
Raw Normal View History

2024-04-25 08:25:23 +02:00
{ inputs, ... }:
{
imports = [
inputs.nixos-hardware.nixosModules.lenovo-thinkpad-t480
./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
2024-05-05 00:36:43 +02:00
services.mysql = {
enable = true;
package = pkgs.mariadb;
};
home-manager.users.thiloho = { pkgs, ... }: {
2024-04-04 23:35:17 +02:00
programs.git.signing.key = "BFD8F6A55B1E4F11";
2024-04-25 08:25:23 +02:00
home = { stateVersion = "23.05"; };
};
2023-07-02 00:18:17 +02:00
system.stateVersion = "23.05";
}