blob: c1861baf661a0f78fbe624773b451a5efb44cc00 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
{ config, lib, pkgs, inputs, ... }:
{
imports =
[ # Include the results of the hardware scan.
./hardware-configuration.nix
../../modules/common.nix
];
networking.hostName = "desktop";
programs.firefox.enable = true;
}
|