home: add udiskie

This commit is contained in:
Bruno BELANYI 2021-04-05 01:47:49 +00:00
parent 44cad6b52b
commit 43457ce41e
2 changed files with 14 additions and 0 deletions

View file

@ -15,6 +15,7 @@
./ssh.nix
./terminal
./tmux.nix
./udiskie.nix
./vim
./wm
./x

13
home/udiskie.nix Normal file
View file

@ -0,0 +1,13 @@
{ config, lib, ... }:
let
cfg = config.my.home.udiskie;
in
{
options.my.home.udiskie = with lib; {
enable = mkEnableOption "udiskie configuration";
};
config.services.udiskie = lib.mkIf cfg.enable {
enable = true;
};
}