18 lines
249 B
Nix
18 lines
249 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
imports =
|
|
[
|
|
./hardware-configuration.nix
|
|
];
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
firefox
|
|
];
|
|
|
|
networking.hostName = "tardis";
|
|
|
|
# DO NOT CHNAGE, EVER!
|
|
system.stateVersion = "26.05";
|
|
}
|