mirror of
https://codeberg.org/privacy1st/nix-git
synced 2025-02-02 07:45:16 +01:00
19 lines
388 B
Nix
19 lines
388 B
Nix
{ config, pkgs, lib, ... }:
|
|
{
|
|
imports = [
|
|
./hardware-configuration.nix
|
|
./host-specific.nix
|
|
#../../modules/tuxedo-rs.nix
|
|
#../../modules/gpu-amd.nix
|
|
|
|
../../modules/base-minimal.nix
|
|
../../modules/base-efi-systemd.nix
|
|
../../modules/headless.nix
|
|
|
|
./cpu-fixed-frequency.nix
|
|
../../modules/java.nix
|
|
];
|
|
|
|
boot.kernelPackages = pkgs.linuxPackages_latest;
|
|
}
|