This commit is contained in:
Vili Sinervä 2024-05-23 13:39:48 +03:00
commit be23132d54
No known key found for this signature in database
GPG key ID: DF8FEAF54EFAC996
13 changed files with 1784 additions and 0 deletions

View file

@ -0,0 +1,18 @@
{ config, pkgs, ... }:
{
networking.hostName = "nixos-cpu";
imports = [
/mnt/nixos-conf/base.nix
/mnt/nixos-conf/development.nix
/mnt/nixos-conf/vili.nix
];
# HARDWARE SPECIFIC
services.qemuGuest.enable = true;
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
}