many changes

This commit is contained in:
2025-02-23 16:00:33 +01:00
parent e2add63337
commit 386b70314d
29 changed files with 1840 additions and 423 deletions

View File

@@ -36,6 +36,7 @@ in {
# ./rustdesk.nix
./thunderbird.nix
./bitwarden.nix
# ./vscode.nix
];
environment.variables.XCURSOR_SIZE = "24";
@@ -82,8 +83,8 @@ in {
fontforge
hypnotix
code-cursor
vscode-fhs
unstable.code-cursor
# unstable.vscode-fhs
quickemu
@@ -132,6 +133,7 @@ in {
mako
mqttui
moonlight-qt
nautilus
netflix
networkmanagerapplet
nextcloud-client
@@ -142,7 +144,8 @@ in {
pinentry
rbw
rofi-rbw
rustdesk
# unstable.rustdesk
unstable.rustdesk-flutter
slurp
sway
swaybg
@@ -197,5 +200,18 @@ in {
"xdg/waybar/config".text = builtins.readFile ./waybar.conf;
"xdg/waybar/style.css".text = builtins.readFile ./waybar.css;
"xdg/foot/foot.ini".text = builtins.readFile ./foot.ini;
# dark mode
"xdg/gtk-2.0/gtkrc".text = "gtk-error-bell=0";
"xdg/gtk-3.0/settings.ini".text = ''
[Settings]
gtk-error-bell=false
gtk-application-prefer-dark-theme=1
'';
"xdg/gtk-4.0/settings.ini".text = ''
[Settings]
gtk-error-bell=false
gtk-application-prefer-dark-theme=1
'';
};
}