Joey Hafner
8ae9642398
- Add AI module for Ollama. - Add emulators for nintendo systems. - Remove unused pkgs-unstable input for obs-studio. - Polish password-manager config. - Add btop-rocm as system monitor. - Add jq terminal package, unwrap kitty. - Add amdgpu system info packages. - Add kitty-popup script to run command in borderless kitty window.
53 lines
1.2 KiB
Nix
53 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/systeminfo.nix
|
|
./apps/password-manager.nix
|
|
./apps/email.nix
|
|
./apps/emulators.nix
|
|
./apps/ai.nix
|
|
./hardware/goxlr.nix
|
|
./hardware/razer.nix
|
|
./hardware/game-controller.nix
|
|
./hardware/amdgpu.nix
|
|
./services/flatpak.nix
|
|
./services/kdeconnect.nix
|
|
./services/nextcloud.nix
|
|
./services/protonmail.nix
|
|
./scripts/ffmpeg.nix
|
|
./scripts/kitty-popup.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"
|
|
];
|
|
}
|