Compare commits
No commits in common. "da423c8565b26ef9606d9fabd2ebe2901d2f6e45" and "6c6530dc788d2c0c24247cb8792ab7694af262b3" have entirely different histories.
da423c8565
...
6c6530dc78
|
|
@ -8,7 +8,6 @@
|
|||
./fonts.nix
|
||||
./gdm.nix
|
||||
./hyprland.nix
|
||||
./localsend.nix
|
||||
./network.nix
|
||||
./packages.nix
|
||||
./pipewire.nix
|
||||
|
|
|
|||
|
|
@ -1,16 +0,0 @@
|
|||
{
|
||||
config,
|
||||
lib,
|
||||
...
|
||||
}:
|
||||
with lib;
|
||||
let
|
||||
cfg = config.modules.localsend;
|
||||
in
|
||||
{
|
||||
config = mkIf cfg.enable {
|
||||
programs.localsend = {
|
||||
enable = true;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
@ -13,9 +13,6 @@
|
|||
AppAutoUpdate = false;
|
||||
BackgroundAppUpdate = false;
|
||||
|
||||
# Quality of Life
|
||||
OfferToSaveLogins = false;
|
||||
|
||||
# Extensions
|
||||
ExtensionSettings = let
|
||||
moz = short: "https://addons.mozilla.org/firefox/downloads/latest/${short}/latest.xpi";
|
||||
|
|
|
|||
|
|
@ -5,7 +5,6 @@
|
|||
imports = [
|
||||
./displayManager.nix
|
||||
./hyprland.nix
|
||||
./localsend.nix
|
||||
./pipewire.nix
|
||||
./plasma.nix
|
||||
./shell.nix
|
||||
|
|
|
|||
|
|
@ -1,13 +0,0 @@
|
|||
{
|
||||
lib,
|
||||
...
|
||||
}:
|
||||
with lib;
|
||||
{
|
||||
options.modules.localsend = {
|
||||
enable = mkEnableOption {
|
||||
default = false;
|
||||
description = "Enable LocalSend";
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
@ -17,8 +17,6 @@
|
|||
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