mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-26 10:06:13 +01:00
442b93ad78
Signed-off-by: Magic_RB <magic_rb@redalder.org>
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";
|
|
};
|
|
};
|
|
};
|
|
}
|