summaryrefslogtreecommitdiff
path: root/hosts
diff options
context:
space:
mode:
authorFreya Murphy <freya@freyacat.org>2025-01-23 09:26:51 -0500
committerFreya Murphy <freya@freyacat.org>2025-01-23 09:26:51 -0500
commit1a51f2f555b182673e3f9b3e38fb2ab0e57dd6c2 (patch)
treeeecdad132615a4469c22ee6d4ccd1df087b6159d /hosts
parentuse base16 in neovim and starship (diff)
downloaddotfiles-nix-1a51f2f555b182673e3f9b3e38fb2ab0e57dd6c2.tar.gz
dotfiles-nix-1a51f2f555b182673e3f9b3e38fb2ab0e57dd6c2.tar.bz2
dotfiles-nix-1a51f2f555b182673e3f9b3e38fb2ab0e57dd6c2.zip
reconfigure
Diffstat (limited to 'hosts')
-rw-r--r--hosts/shinji.nix21
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;