Joey Hafner
81fe9f2b8d
- Add category 'services' for stuff to run in the background. - Add flatpak, kdeconnect, nextcloud, protonmail, ollama to services. - Add game-controller file for drivers and config tools. - Refactor flatpaks and packages from home.nix to relevant files: - Mission Center (flatpak) -> taskmanager.nix - Losslesscut (flatpak) -> multimedia.nix - PrismLauncher (flatpak) -> minecraft.nix - VLC (flatpak & system package) -> multimedia.nix - Fastfetch (package) -> terminal.nix - kdeconnect (package) -> services/kdeconnect.nix - Protonmail app and bridge -> services/protonmail.nix - obsidian -> obsidian.nix
46 lines
1.1 KiB
Nix
46 lines
1.1 KiB
Nix
{ vars, ... }:
|
|
{
|
|
imports = [
|
|
./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
|
|
./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"
|
|
];
|
|
}
|