installed and ran alejandra as formatter
This commit is contained in:
parent
49452e89db
commit
8a1314b58f
47 changed files with 1362 additions and 1113 deletions
|
@ -1,24 +1,29 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
|
||||
let cfg = config.jade.desktop.ios-compat;
|
||||
in with lib; {
|
||||
options.jade.desktop.ios-compat = {
|
||||
enable = mkEnableOption "Enable the ios compatability programs";
|
||||
};
|
||||
config = mkIf cfg.enable {
|
||||
services = {
|
||||
usbmuxd.enable = true;
|
||||
gvfs.enable = true;
|
||||
{
|
||||
config,
|
||||
lib,
|
||||
pkgs,
|
||||
...
|
||||
}: let
|
||||
cfg = config.jade.desktop.ios-compat;
|
||||
in
|
||||
with lib; {
|
||||
options.jade.desktop.ios-compat = {
|
||||
enable = mkEnableOption "Enable the ios compatability programs";
|
||||
};
|
||||
home-manager.users.jade = { pkgs, ... }: {
|
||||
home.packages = with pkgs; [
|
||||
libimobiledevice
|
||||
libimobiledevice-glue
|
||||
ifuse
|
||||
usbmuxd
|
||||
libusbmuxd
|
||||
gvfs
|
||||
];
|
||||
config = mkIf cfg.enable {
|
||||
services = {
|
||||
usbmuxd.enable = true;
|
||||
gvfs.enable = true;
|
||||
};
|
||||
home-manager.users.jade = {pkgs, ...}: {
|
||||
home.packages = with pkgs; [
|
||||
libimobiledevice
|
||||
libimobiledevice-glue
|
||||
ifuse
|
||||
usbmuxd
|
||||
libusbmuxd
|
||||
gvfs
|
||||
];
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue