- Add Stylix config with Catppuccin Mocha. - Add password manager interface via wofi, rbw, rofi-rbw, wl-clipboard, and dotool. - Add protonmail-desktop. - Replace Firefox and Chromium flatpaks with native apps. - Remove Vesktop flatpak; using only native app. - Remove VLC flatpak; using only native app. - Add terminal font config to VSCode userSettings. - Move "protonup-ng" Proton updater from "protonmail.nix" to its proper "gaming.nix" file. - Add "fonts.nix" nixos config. - Move gaming packages from nixos configuration.nix to gaming.nix. - Remove Plasma6's Discover app. - Add system-level ydotool program. Not yet used. - Add backupFileExtension config for home-manager to mitigate collisions.
36 lines
580 B
Nix
36 lines
580 B
Nix
{ pkgs, ... }:
|
|
{
|
|
home.packages = with pkgs; [
|
|
rofi-rbw
|
|
wl-clipboard
|
|
dotool
|
|
];
|
|
programs.tofi = {
|
|
enable = false;
|
|
settings = {};
|
|
};
|
|
programs.rofi = {
|
|
enable = false;
|
|
};
|
|
programs.wofi = {
|
|
enable = true;
|
|
};
|
|
|
|
programs.rbw = {
|
|
enable = true;
|
|
settings = {
|
|
base_url = "https://bitwarden.jafner.tools";
|
|
email = "jafner425@gmail.com";
|
|
lock_timeout = 3600;
|
|
pinentry = pkgs.pinentry-qt;
|
|
};
|
|
};
|
|
# home.file."rofi-rbw.rc" = {
|
|
# target = ".config/rofi-rbw.rc";
|
|
# text = ''
|
|
# '';
|
|
# };
|
|
# };
|
|
}
|
|
|