home: removed unused modules

This commit is contained in:
Aly Raffauf 2024-06-03 21:27:06 -04:00
parent 621950b0ce
commit 2b1247b696
6 changed files with 2 additions and 87 deletions

View file

@ -31,6 +31,7 @@ in {
trayscale trayscale
unstable.obsidian unstable.obsidian
unstable.zoom-us unstable.zoom-us
webcord
wget wget
]; ];
@ -118,10 +119,8 @@ in {
neofetch.enable = true; neofetch.enable = true;
neovim.enable = true; neovim.enable = true;
tauon.enable = true; tauon.enable = true;
thunderbird.enable = true;
tmux.enable = true; tmux.enable = true;
vsCodium.enable = true; vsCodium.enable = true;
webCord.enable = true;
}; };
scripts = { scripts = {
pp-adjuster.enable = true; pp-adjuster.enable = true;

View file

@ -19,6 +19,7 @@
plexamp plexamp
vlc vlc
xfce.xfce4-taskmanager xfce.xfce4-taskmanager
webcord
zoom-us zoom-us
]; ];
@ -93,7 +94,6 @@
firefox.enable = true; firefox.enable = true;
fzf.enable = true; fzf.enable = true;
vsCodium.enable = true; vsCodium.enable = true;
webCord.enable = true;
}; };
}; };
} }

View file

@ -14,7 +14,6 @@
./firefox ./firefox
./fuzzel ./fuzzel
./fzf ./fzf
./kanshi
./librewolf ./librewolf
./mako ./mako
./neofetch ./neofetch
@ -22,11 +21,9 @@
./swaylock ./swaylock
./tauon ./tauon
./thunar ./thunar
./thunderbird
./tmux ./tmux
./vsCodium ./vsCodium
./waybar ./waybar
./webCord
./wlogout ./wlogout
]; ];
} }

View file

@ -1,57 +0,0 @@
{
pkgs,
lib,
config,
...
}: {
options = {
alyraffauf.apps.kanshi.enable =
lib.mkEnableOption "Enable kanshi monitor profiles";
};
config = lib.mkIf config.alyraffauf.apps.kanshi.enable {
# Packages that should be installed to the user profile.
home.packages = with pkgs; [
kanshi
];
services.kanshi.enable = true;
services.kanshi.profiles.lavaridge = {
outputs = [
{
status = "enable";
criteria = "BOE 0x095F Unknown";
scale = 1.5;
}
];
};
services.kanshi.profiles.petalburg = {
outputs = [
{
status = "enable";
criteria = "Samsung Display Corp. 0x4152 Unknown";
scale = 2.0;
}
];
};
services.kanshi.profiles.rustboro = {
outputs = [
{
status = "enable";
criteria = "LG Display 0x0569 Unknown";
scale = 1.25;
}
];
};
services.kanshi.profiles.mauville = {
outputs = [
{
status = "enable";
criteria = "LG Electronics LG ULTRAWIDE 311NTAB5M720";
scale = 1.2;
adaptiveSync = false;
}
];
};
};
}

View file

@ -1,12 +0,0 @@
{
pkgs,
lib,
config,
...
}: {
options = {alyraffauf.apps.thunderbird.enable = lib.mkEnableOption "Enable Thunderbird.";};
config = lib.mkIf config.alyraffauf.apps.thunderbird.enable {
home.packages = [pkgs.thunderbird];
};
}

View file

@ -1,12 +0,0 @@
{
pkgs,
lib,
config,
...
}: {
options = {alyraffauf.apps.webCord.enable = lib.mkEnableOption "Enables WebCord.";};
config = lib.mkIf config.alyraffauf.apps.webCord.enable {
home.packages = with pkgs; [webcord];
};
}