1
0
mirror of https://github.com/kmein/niveum synced 2026-03-16 10:11:08 +01:00
Files
niveum/systems/wilde/configuration.nix

17 lines
307 B
Nix
Raw Normal View History

2019-06-15 15:04:13 +02:00
{ config, pkgs, ... }:
{
2019-06-15 17:50:02 +02:00
imports = [
<configs/default.nix>
./hardware-configuration.nix
<stockholm/krebs/2configs/hw/x220.nix>
];
2019-06-15 15:04:13 +02:00
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
2019-06-15 17:50:02 +02:00
networking.hostName = "wilde";
2019-06-15 15:04:13 +02:00
2019-06-15 17:50:02 +02:00
system.stateVersion = "19.03";
2019-06-15 15:04:13 +02:00
}