Compare commits
2 Commits
6c6530dc78
...
da423c8565
| Author | SHA1 | Date |
|---|---|---|
|
|
da423c8565 | |
|
|
9874c6af56 |
|
|
@ -8,6 +8,7 @@
|
||||||
./fonts.nix
|
./fonts.nix
|
||||||
./gdm.nix
|
./gdm.nix
|
||||||
./hyprland.nix
|
./hyprland.nix
|
||||||
|
./localsend.nix
|
||||||
./network.nix
|
./network.nix
|
||||||
./packages.nix
|
./packages.nix
|
||||||
./pipewire.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;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
@ -13,6 +13,9 @@
|
||||||
AppAutoUpdate = false;
|
AppAutoUpdate = false;
|
||||||
BackgroundAppUpdate = false;
|
BackgroundAppUpdate = false;
|
||||||
|
|
||||||
|
# Quality of Life
|
||||||
|
OfferToSaveLogins = false;
|
||||||
|
|
||||||
# Extensions
|
# Extensions
|
||||||
ExtensionSettings = let
|
ExtensionSettings = let
|
||||||
moz = short: "https://addons.mozilla.org/firefox/downloads/latest/${short}/latest.xpi";
|
moz = short: "https://addons.mozilla.org/firefox/downloads/latest/${short}/latest.xpi";
|
||||||
|
|
|
||||||
|
|
@ -5,6 +5,7 @@
|
||||||
imports = [
|
imports = [
|
||||||
./displayManager.nix
|
./displayManager.nix
|
||||||
./hyprland.nix
|
./hyprland.nix
|
||||||
|
./localsend.nix
|
||||||
./pipewire.nix
|
./pipewire.nix
|
||||||
./plasma.nix
|
./plasma.nix
|
||||||
./shell.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.plasma.enable = false;
|
||||||
modules.displayManager.displayManager = "gdm";
|
modules.displayManager.displayManager = "gdm";
|
||||||
|
|
||||||
|
modules.localsend.enable = true;
|
||||||
|
|
||||||
modules.zsh.enable = true;
|
modules.zsh.enable = true;
|
||||||
modules.shell.defaultShell = "zsh";
|
modules.shell.defaultShell = "zsh";
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue