mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-26 18:16:13 +01:00
22 lines
378 B
Nix
22 lines
378 B
Nix
|
{ config, pkgs, lib, ... }:
|
||
|
with lib;
|
||
|
let
|
||
|
cfg = config.magic_rb.hardware.blowhole;
|
||
|
in {
|
||
|
options.magic_rb.hardware.blowhole = mkEnableOption "Enable blowhole.";
|
||
|
|
||
|
config = mkIf cfg {
|
||
|
boot = {
|
||
|
kernelPackages = pkgs.linuxPackages_latest;
|
||
|
};
|
||
|
|
||
|
fileSystems = {
|
||
|
"/" =
|
||
|
{
|
||
|
device = "asd";
|
||
|
fsType = "ext4";
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|