Add LocalSend
This commit is contained in:
parent
6c6530dc78
commit
9874c6af56
|
|
@ -8,6 +8,7 @@
|
|||
./fonts.nix
|
||||
./gdm.nix
|
||||
./hyprland.nix
|
||||
./localsend.nix
|
||||
./network.nix
|
||||
./packages.nix
|
||||
./pipewire.nix
|
||||
|
|
|
|||
|
|
@ -0,0 +1,16 @@
|
|||
{
|
||||
config,
|
||||
lib,
|
||||
...
|
||||
}:
|
||||
with lib;
|
||||
let
|
||||
cfg = config.modules.localsend;
|
||||
in
|
||||
{
|
||||
config = mkIf cfg.enable {
|
||||
programs.localsend = {
|
||||
enable = true;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
@ -5,6 +5,7 @@
|
|||
imports = [
|
||||
./displayManager.nix
|
||||
./hyprland.nix
|
||||
./localsend.nix
|
||||
./pipewire.nix
|
||||
./plasma.nix
|
||||
./shell.nix
|
||||
|
|
|
|||
|
|
@ -0,0 +1,13 @@
|
|||
{
|
||||
lib,
|
||||
...
|
||||
}:
|
||||
with lib;
|
||||
{
|
||||
options.modules.localsend = {
|
||||
enable = mkEnableOption {
|
||||
default = false;
|
||||
description = "Enable LocalSend";
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
@ -17,6 +17,8 @@
|
|||
modules.plasma.enable = false;
|
||||
modules.displayManager.displayManager = "gdm";
|
||||
|
||||
modules.localsend.enable = true;
|
||||
|
||||
modules.zsh.enable = true;
|
||||
modules.shell.defaultShell = "zsh";
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue