blob: 2c598f7f7431a761577b8496ef9408410c392b01 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
{ 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;
system.stateVersion = "25.11";
}
|