- 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.
49 lines
1.1 KiB
Nix
49 lines
1.1 KiB
Nix
{ vars, ... }:
|
|
{
|
|
imports = [
|
|
./configuration/stylix.nix
|
|
./apps/browser.nix
|
|
./apps/discord.nix
|
|
./apps/git.nix
|
|
./apps/obs-studio.nix
|
|
./apps/terminal.nix
|
|
./apps/vscode.nix
|
|
./apps/iac-tools.nix
|
|
./apps/minecraft.nix
|
|
./apps/multimedia.nix
|
|
./apps/obsidian.nix
|
|
./apps/spotify.nix
|
|
./apps/taskmanager.nix
|
|
./apps/password-manager.nix
|
|
./apps/email.nix
|
|
./hardware/goxlr.nix
|
|
./hardware/razer.nix
|
|
./hardware/game-controller.nix
|
|
./services/ai.nix
|
|
./services/flatpak.nix
|
|
./services/kdeconnect.nix
|
|
./services/nextcloud.nix
|
|
./services/protonmail.nix
|
|
];
|
|
|
|
services.flatpak = {
|
|
enable = true;
|
|
uninstallUnmanaged = true;
|
|
remotes = [
|
|
{ name = "flathub"; location = "https://flathub.org/repo/flathub.flatpakrepo"; }
|
|
];
|
|
};
|
|
|
|
home.enableNixpkgsReleaseCheck = false;
|
|
home.preferXdgDirectories = true;
|
|
home.username = "${vars.user.username}";
|
|
home.homeDirectory = "/home/${vars.user.username}";
|
|
home.stateVersion = "24.11";
|
|
home.file = { };
|
|
home.sessionVariables = { };
|
|
programs.home-manager.enable = true;
|
|
xdg.systemDirs.data = [
|
|
"/usr/share"
|
|
];
|
|
}
|