diff options
Diffstat (limited to 'hosts/shinji.nix')
-rw-r--r-- | hosts/shinji.nix | 21 |
1 files changed, 13 insertions, 8 deletions
diff --git a/hosts/shinji.nix b/hosts/shinji.nix index 4ba5418..b812a86 100644 --- a/hosts/shinji.nix +++ b/hosts/shinji.nix @@ -1,21 +1,26 @@ -{ inputs, options, ... }: +# Shinji +# System configuration for my laptop -inputs.nixpkgs.lib.nixosSystem { - specialArgs = { inherit inputs; }; +{ + inputs, + options, + ... +}: + +inputs.nixpkgs.lib.nixosSystem rec { system = "x86_64-linux"; + specialArgs = { inherit inputs; }; modules = [ options inputs.home-manager.nixosModules.home-manager inputs.lanzaboote.nixosModules.lanzaboote - ../modules + ../nix { # options - desktop.enable = true; - system.enable = true; - monitor = { + monitors = [{ name = "eDP-1"; scale = 1.25; - }; + }]; # hardware hardware.graphics.enable = true; |