pub-solar-os/hosts/droppie/droppie.nix

17 lines
247 B
Nix
Raw Normal View History

2022-08-13 16:08:27 +00:00
{ config, pkgs, lib, ... }:
with lib;
let
psCfg = config.pub-solar;
xdg = config.home-manager.users."${psCfg.user.name}".xdg;
in
{
imports = [
./configuration.nix
];
config = {
hardware.cpu.intel.updateMicrocode = true;
};
}