diff options
Diffstat (limited to 'hosts/thinkpad')
-rw-r--r-- | hosts/thinkpad/default.nix | 75 |
1 files changed, 30 insertions, 45 deletions
diff --git a/hosts/thinkpad/default.nix b/hosts/thinkpad/default.nix index 5167074..4d764c0 100644 --- a/hosts/thinkpad/default.nix +++ b/hosts/thinkpad/default.nix @@ -1,51 +1,36 @@ # 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; - } - ]; +{...}: { + imports = [ + ./hardware.nix + ]; - # 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; - }; + # 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; + }; } |