pluto: add external disk

This commit is contained in:
Nico 2025-05-03 16:16:03 +10:00
parent 551b17baef
commit 754a6b403f
4 changed files with 51 additions and 5 deletions

View file

@ -0,0 +1,16 @@
{ config, lib, pkgs, ... }:
{
imports = [
./disko.nix
./hardware-configuration.nix
./specialisation.nix
];
networking.hostName = "pluto";
hardware.graphics.enable = true;
hardware.graphics.extraPackages = with pkgs; [ intel-media-driver ];
services.logind.lidSwitchExternalPower = "ignore";
}