[linux-desktop] Adds a few more apps and reorganizes the config

This commit is contained in:
2025-05-09 18:20:14 -07:00
parent b1ae2d56fb
commit 5e2c997cdc

View File

@@ -10,10 +10,10 @@
./terminal.nix ./terminal.nix
]; ];
home.packages = with pkgs; [ home = {
packages = with pkgs; [
# Desktop Applications # Desktop Applications
signal-desktop signal-desktop
firefox
# Common utilities # Common utilities
feh feh
@@ -30,7 +30,7 @@
waypaper # Wallpaper switcher waypaper # Wallpaper switcher
]; ];
home.pointerCursor = { pointerCursor = {
enable = true; enable = true;
gtk.enable = true; gtk.enable = true;
name = "phinger-cursors"; name = "phinger-cursors";
@@ -39,12 +39,20 @@
}; };
# Hint for electron apps to use wayland # Hint for electron apps to use wayland
home.sessionVariables.NIXOS_OZONE_WL = "1"; sessionVariables.NIXOS_OZONE_WL = "1";
# Miscelaneous config files # Miscelaneous config files
home.file = { file = {
".XCompose".source = ./config/XCompose; ".XCompose".source = ./config/XCompose;
}; };
};
programs = {
# browsers
firefox.enable = true;
qutebrowser.enable = true;
librewolf.enable = true;
};
# GTK settings # GTK settings
gtk = { gtk = {