- Switch Zen browser from flatpak to 0xc000022070's flake. - Add ffmpeg scripts for transcoding and uploading video. - Add ffmpeg-full package. - Delete workaround for nixGL with OBS-studio.
50 lines
1.2 KiB
Nix
50 lines
1.2 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
|
|
./scripts/ffmpeg.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"
|
|
];
|
|
}
|