Compare commits

..

No commits in common. "da423c8565b26ef9606d9fabd2ebe2901d2f6e45" and "6c6530dc788d2c0c24247cb8792ab7694af262b3" have entirely different histories.

6 changed files with 0 additions and 36 deletions

View File

@ -8,7 +8,6 @@
./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

View File

@ -1,16 +0,0 @@
{
config,
lib,
...
}:
with lib;
let
cfg = config.modules.localsend;
in
{
config = mkIf cfg.enable {
programs.localsend = {
enable = true;
};
};
}

View File

@ -13,9 +13,6 @@
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";

View File

@ -5,7 +5,6 @@
imports = [ imports = [
./displayManager.nix ./displayManager.nix
./hyprland.nix ./hyprland.nix
./localsend.nix
./pipewire.nix ./pipewire.nix
./plasma.nix ./plasma.nix
./shell.nix ./shell.nix

View File

@ -1,13 +0,0 @@
{
lib,
...
}:
with lib;
{
options.modules.localsend = {
enable = mkEnableOption {
default = false;
description = "Enable LocalSend";
};
};
}

View File

@ -17,8 +17,6 @@
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";