# Thinkpad #System configuration for my thinkpad { inputs, options, ... }: inputs.nixpkgs.lib.nixosSystem rec { system = "x86_64-linux"; specialArgs = {inherit inputs;}; modules = [ options ../../home ../../modules ../../system { imports = [ ./hardware.nix ]; # options hostName = "thinkpad"; monitors = [ { name = "eDP-1"; scale = 1.0; } ]; # modules browser = { firefox = true; }; desktop = { enable = true; astal = true; hyprland = true; hyprlock = true; hypridle = true; hyprpaper = true; }; gaming = { homestuck = true; minecraft = true; }; terminal = { kitty = true; }; } ]; }