diff options
Diffstat (limited to 'hosts/kaworu')
-rw-r--r-- | hosts/kaworu/default.nix | 87 |
1 files changed, 36 insertions, 51 deletions
diff --git a/hosts/kaworu/default.nix b/hosts/kaworu/default.nix index 7d09423..8b7e089 100644 --- a/hosts/kaworu/default.nix +++ b/hosts/kaworu/default.nix @@ -1,57 +1,42 @@ # Kaworu # System configuration for my desktop -{ - inputs, - options, - ... -}: -inputs.nixpkgs.lib.nixosSystem rec { - system = "x86_64-linux"; - specialArgs = {inherit inputs;}; - modules = [ - options - ../../home - ../../modules - ../../system - { - imports = [ - ./hardware.nix - ]; - - # options - hostName = "kaworu"; - monitors = [ - { - name = "HDMI-A-1"; - scale = 1.0; - } - ]; +{...}: { + imports = [ + ./hardware.nix + ]; - # modules - browser = { - firefox = true; - }; - desktop = { - enable = true; - astal = true; - hyprland = true; - hyprlock = true; - hypridle = true; - hyprpaper = true; - }; - development = { - c = true; - rust = true; - web = true; - }; - gaming = { - homestuck = true; - minecraft = true; - steam = true; - }; - terminal = { - kitty = true; - }; + # options + hostName = "kaworu"; + monitors = [ + { + name = "HDMI-A-1"; + scale = 1.0; } ]; + + # modules + browser = { + firefox = true; + }; + desktop = { + enable = true; + astal = true; + hyprland = true; + hyprlock = true; + hypridle = true; + hyprpaper = true; + }; + development = { + c = true; + rust = true; + web = true; + }; + gaming = { + homestuck = true; + minecraft = true; + steam = true; + }; + terminal = { + kitty = true; + }; } |