summaryrefslogtreecommitdiff
path: root/hosts/laptop
diff options
context:
space:
mode:
authorChristian <[email protected]>2026-01-28 17:37:19 -0600
committerChristian <[email protected]>2026-01-28 17:37:19 -0600
commitffea2846e2de5da72c890d4e48118959857d122e (patch)
treec66fdcd2ea316dd75b4db0a02b8babfe381b2987 /hosts/laptop
parent011161b8149b96d3fe51ee6912f638060f720b91 (diff)
Barebones Laptop
Diffstat (limited to 'hosts/laptop')
-rw-r--r--hosts/laptop/configuration.nix12
1 files changed, 12 insertions, 0 deletions
diff --git a/hosts/laptop/configuration.nix b/hosts/laptop/configuration.nix
new file mode 100644
index 0000000..9755333
--- /dev/null
+++ b/hosts/laptop/configuration.nix
@@ -0,0 +1,12 @@
+{ config, lib, pkgs, inputs, ... }:
+
+{
+ imports =
+ [ # Include the results of the hardware scan.
+ ./hardware-configuration.nix
+ ];
+
+ networking.hostName = "laptop";
+
+ programs.firefox.enable = true;
+}