From a45c4551712c1ba5cb82eaf290f311ab0e8690e4 Mon Sep 17 00:00:00 2001 From: Collin Williams <96917990+bluedragon1221@users.noreply.github.com> Date: Mon, 9 Jun 2025 17:40:46 +0000 Subject: big changes --- hosts/mercury/system.nix | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 hosts/mercury/system.nix (limited to 'hosts/mercury/system.nix') diff --git a/hosts/mercury/system.nix b/hosts/mercury/system.nix new file mode 100644 index 0000000..9a78bef --- /dev/null +++ b/hosts/mercury/system.nix @@ -0,0 +1,24 @@ +{ + pkgs, + inputs, + ... +}: { + imports = [ + ./battery.nix + + inputs.nixos-facter-modules.nixosModules.facter + {facter.reportPath = ./facter.json;} + + inputs.lanzaboote.nixosModules.lanzaboote + ]; + + fonts = { + enableDefaultPackages = false; + packages = with pkgs; [ + ibm-plex + nerd-fonts.iosevka + ]; + }; + + system.stateVersion = "25.05"; +} -- cgit v1.3.1