os/system/lime/core.nix

24 lines
470 B
Nix
Raw Permalink Normal View History

2023-06-19 15:15:59 +02:00
{ lib, modulesPath, nixos-hardware, ... }: {
2023-06-19 15:15:59 +02:00
imports = [
./hardware-configuration.nix
nixos-hardware.nixosModules.lenovo-thinkpad-x390
nixos-hardware.nixosModules.common-gpu-nvidia-disable
];
2023-06-17 07:53:58 +02:00
custom = {
gui.enable = true;
backups.enable = true;
};
services.fprintd.enable = true;
networking.hostName = "lime";
networking.networkmanager.enable = true;
system.stateVersion = "22.11";
services.xserver.libinput.enable = true;
2023-06-17 07:53:58 +02:00
}