diff options
| author | Christian <[email protected]> | 2026-01-28 17:37:19 -0600 |
|---|---|---|
| committer | Christian <[email protected]> | 2026-01-28 17:37:19 -0600 |
| commit | ffea2846e2de5da72c890d4e48118959857d122e (patch) | |
| tree | c66fdcd2ea316dd75b4db0a02b8babfe381b2987 /hosts/laptop/configuration.nix | |
| parent | 011161b8149b96d3fe51ee6912f638060f720b91 (diff) | |
Barebones Laptop
Diffstat (limited to 'hosts/laptop/configuration.nix')
| -rw-r--r-- | hosts/laptop/configuration.nix | 12 |
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; +} |
