add some more to system tray

also begin work on home-manager/music.nix
This commit is contained in:
Gabriella Bere 2025-05-24 07:35:58 +01:00
parent a86371252b
commit 047e87eb37
3 changed files with 24 additions and 35 deletions

View file

@ -1,8 +1,6 @@
{ {
config,
pkgs, pkgs,
lib, lib,
inputs,
... ...
}: { }: {
home.username = "blue"; home.username = "blue";
@ -22,13 +20,12 @@
./direnv.nix ./direnv.nix
./firefox.nix ./firefox.nix
./zellij.nix ./zellij.nix
./music.nix
]; ];
# States home manager version that config was originally compatible with, do not change without reading all patch notes since this version and altering as needed
home.stateVersion = "24.05"; home.stateVersion = "24.05";
# services.pass-secret-service.enable = true; # for use with protonmail-bridge services.gnome-keyring.enable = true; # used for nextcloud-client
services.gnome-keyring.enable = true; # used for protonmail-bridge and nextcloud-client
# General use home packages that dont require a separate module # General use home packages that dont require a separate module
home.packages = with pkgs; [ home.packages = with pkgs; [
@ -45,12 +42,18 @@
reaper # Paid DAW, using free trial reaper # Paid DAW, using free trial
telegram-desktop # Telegram messenger client telegram-desktop # Telegram messenger client
pavucontrol # Useful audio control GUI pavucontrol # Useful audio control GUI
stable.prismlauncher stable.prismlauncher # Minecraft launcher
# Audio Plugins
calf calf
zam-plugins zam-plugins
lsp-plugins lsp-plugins
ardour
gimp3 ardour # DAW
gimp3 # GNU Image Manipulation Program, pretty self explanatory
networkmanagerapplet
blueman
]; ];
services.flatpak.packages = [ services.flatpak.packages = [
"io.mrarm.mcpelauncher" # Minecraft bedrock edition launcher "io.mrarm.mcpelauncher" # Minecraft bedrock edition launcher
@ -86,33 +89,6 @@
lines = 3; lines = 3;
columns = 200; columns = 200;
}; };
# font.normal = {
# family = "hack";
# };
# keyboard.bindings = [
# {
# key = "K";
# mods = "Control";
# chars = "\\u000c";
# }
# ];
}; };
}; };
# programs.hyprpaper = {
# enable = true;
# settings = {
# ipc = "on";
# splash = false;
# splash_offset = 2.0;
# preload = [ "~/Pictures/wallpaper.png" ];
# wallpaper = [
# ",~/Pictures/wallpaper.png"
# ];
# };
# };
services.blueman-applet.enable = true;
} }

View file

@ -50,6 +50,10 @@
"[workspace name:bg_noise] floorp https://www.youtube.com/playlist?list=WL" "[workspace name:bg_noise] floorp https://www.youtube.com/playlist?list=WL"
"[workspace name:main] alacritty" "[workspace name:main] alacritty"
"nm-applet --indicator"
"blueman-applet"
"trayscale"
]; ];
# Declare all keybinds # Declare all keybinds

9
home-manager/music.nix Normal file
View file

@ -0,0 +1,9 @@
{ pkgs, ... }: {
services.mopidy = {
enable = true;
extensionPackages = [ pkgs.mopidy-jellyfin ];
}
programs.rmpc = {
enable = true;
};
}