2024-12-06 13:53:58 -08:00
|
|
|
{ vars, ... }:
|
2024-10-05 12:33:04 -07:00
|
|
|
{
|
Update flake, fix OBS issues, prune flatpaks, add unstable packages list, add Spotify config:
- Update flake to get most recent versions of librespot, spotify-player
- Add obs-toggle-recording script, wrap OBS with nixGL
- Prune flatpaks: Bottles, Chromium, Gnome Platform, Zoom, Kontact, Neochat
- Add unstable packages: librespot, fzf, deploy-rs
- Create librespot Systemd unit, enable spotify-player.
2024-10-23 15:33:37 -07:00
|
|
|
imports = [
|
2024-12-06 18:21:14 -08:00
|
|
|
./configuration/stylix.nix
|
2024-12-09 12:41:17 -08:00
|
|
|
./configuration/git.nix
|
|
|
|
./configuration/keys.nix
|
2024-12-12 00:00:08 -08:00
|
|
|
./configuration/defaultApps.nix
|
|
|
|
./configuration/mangohud.nix
|
2024-12-05 12:52:17 -08:00
|
|
|
./apps/browser.nix
|
|
|
|
./apps/discord.nix
|
|
|
|
./apps/obs-studio.nix
|
|
|
|
./apps/terminal.nix
|
|
|
|
./apps/vscode.nix
|
|
|
|
./apps/iac-tools.nix
|
2024-12-06 13:53:58 -08:00
|
|
|
./apps/minecraft.nix
|
|
|
|
./apps/multimedia.nix
|
|
|
|
./apps/obsidian.nix
|
2024-12-05 14:17:41 -08:00
|
|
|
./apps/spotify.nix
|
2024-12-09 10:57:28 -08:00
|
|
|
./apps/systeminfo.nix
|
2024-12-06 18:21:14 -08:00
|
|
|
./apps/password-manager.nix
|
|
|
|
./apps/email.nix
|
2024-12-09 10:57:28 -08:00
|
|
|
./apps/emulators.nix
|
|
|
|
./apps/ai.nix
|
2024-12-06 13:53:58 -08:00
|
|
|
./services/flatpak.nix
|
|
|
|
./services/kdeconnect.nix
|
|
|
|
./services/nextcloud.nix
|
|
|
|
./services/protonmail.nix
|
2024-12-12 00:00:08 -08:00
|
|
|
./services/goxlr-utility.nix
|
2024-12-07 00:39:36 -08:00
|
|
|
./scripts/ffmpeg.nix
|
2024-12-09 10:57:28 -08:00
|
|
|
./scripts/kitty-popup.nix
|
2024-12-12 13:12:24 -08:00
|
|
|
./scripts/nixos.nix
|
2024-12-13 00:33:08 -08:00
|
|
|
./scripts/obs-toggle-recording.nix
|
Update flake, fix OBS issues, prune flatpaks, add unstable packages list, add Spotify config:
- Update flake to get most recent versions of librespot, spotify-player
- Add obs-toggle-recording script, wrap OBS with nixGL
- Prune flatpaks: Bottles, Chromium, Gnome Platform, Zoom, Kontact, Neochat
- Add unstable packages: librespot, fzf, deploy-rs
- Create librespot Systemd unit, enable spotify-player.
2024-10-23 15:33:37 -07:00
|
|
|
];
|
2024-12-05 12:52:17 -08:00
|
|
|
|
2024-10-05 12:33:04 -07:00
|
|
|
services.flatpak = {
|
|
|
|
enable = true;
|
2024-10-08 13:50:20 -07:00
|
|
|
uninstallUnmanaged = true;
|
|
|
|
remotes = [
|
|
|
|
{ name = "flathub"; location = "https://flathub.org/repo/flathub.flatpakrepo"; }
|
|
|
|
];
|
Update flake, fix OBS issues, prune flatpaks, add unstable packages list, add Spotify config:
- Update flake to get most recent versions of librespot, spotify-player
- Add obs-toggle-recording script, wrap OBS with nixGL
- Prune flatpaks: Bottles, Chromium, Gnome Platform, Zoom, Kontact, Neochat
- Add unstable packages: librespot, fzf, deploy-rs
- Create librespot Systemd unit, enable spotify-player.
2024-10-23 15:33:37 -07:00
|
|
|
};
|
2024-12-05 12:52:17 -08:00
|
|
|
|
2024-10-05 12:33:04 -07:00
|
|
|
home.enableNixpkgsReleaseCheck = false;
|
|
|
|
home.preferXdgDirectories = true;
|
2024-11-01 13:08:55 -07:00
|
|
|
home.username = "${vars.user.username}";
|
|
|
|
home.homeDirectory = "/home/${vars.user.username}";
|
2024-12-05 12:52:17 -08:00
|
|
|
home.stateVersion = "24.11";
|
2024-12-09 12:41:17 -08:00
|
|
|
home.file = {
|
|
|
|
"Music" = {
|
|
|
|
enable = false;
|
|
|
|
target = "Music/";
|
|
|
|
};
|
|
|
|
};
|
2024-12-05 12:52:17 -08:00
|
|
|
home.sessionVariables = { };
|
2024-10-05 12:33:04 -07:00
|
|
|
programs.home-manager.enable = true;
|
|
|
|
xdg.systemDirs.data = [
|
|
|
|
"/usr/share"
|
|
|
|
];
|
|
|
|
}
|