mainly styling things

This commit is contained in:
xunuwu 2024-10-30 09:13:46 +01:00
parent 06397e1f66
commit 48f90b854a
Signed by: xun
SSH key fingerprint: SHA256:Uot/1WoAjWAeqLOHA5vYy4phhVydsH7jCPmBjaPZfgI
16 changed files with 379 additions and 149 deletions

View file

@ -1,6 +1,7 @@
{
inputs,
self,
pkgs,
...
}: {
imports = [
@ -28,7 +29,7 @@
# desktop
../../programs/desktop
../../programs/desktop/theme.nix
# ../../programs/desktop/theme.nix
../../programs/desktop/awesome
#../../programs/desktop/hyprland
../../programs/desktop/sway
@ -63,6 +64,8 @@
# ../../programs/games/krunker.nix
#../../programs/games/ludusavi.nix
./dark.nix
# media services
../../services/media/playerctl.nix
# system services
@ -81,7 +84,6 @@
};
desktop = {
xdg = enabled;
colorscheme = "light";
};
programs.terminal = {
shell.zsh = enabled;
@ -106,4 +108,15 @@
};
# school.geogebra = enabled;
};
qt = {
enable = true;
platformTheme = {
name = "gtk3";
package = [
pkgs.libsForQt5.qtstyleplugins
pkgs.qt6.qtbase
];
};
};
}