From 8761dd3db5d43465487b7f2aaab804ffe104ff2c Mon Sep 17 00:00:00 2001 From: randomuser Date: Sun, 15 Oct 2023 13:31:54 -0500 Subject: [PATCH] add new machine --- boxes/inspiron.nix | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 boxes/inspiron.nix diff --git a/boxes/inspiron.nix b/boxes/inspiron.nix new file mode 100644 index 0000000..513d4e6 --- /dev/null +++ b/boxes/inspiron.nix @@ -0,0 +1,12 @@ +{ lib, config, pkgs, ...}: + +{ + imports = [ + ../common/desktop.nix + ]; + + boot.loader.grub.enable = true; + boot.loader.grub.device = "/dev/sda"; + + networking.hostName = "mainsail"; +}