fix: make portals great again!

This commit is contained in:
2026-04-26 07:15:21 +02:00
parent 701b7e58a8
commit 36094dcaed
8 changed files with 121 additions and 104 deletions
+2 -2
View File
@@ -10,13 +10,13 @@
./git.nix
./kitty.nix
./mangohud.nix
./niri.nix
./tmux.nix
./vesktop.nix
./zoxide.nix
]
++ (if currentSystemDe == "hyprland" then [ ./hyprland ] else [ ])
++ (if currentSystemDe == "gnome" then [ ./gnome.nix ] else [ ]);
++ (if currentSystemDe == "gnome" then [ ./gnome.nix ] else [ ])
++ (if currentSystemDe == "niri" then [ ./niri.nix ] else [ ]);
home = {
username = "${currentSystemUser}";
+21 -1
View File
@@ -1,4 +1,4 @@
{ inputs, ... }:
{ inputs, pkgs, ... }:
{
imports = [
inputs.noctalia.homeModules.default
@@ -15,4 +15,24 @@
enable = true;
settings = ../assets/noctalia.json;
};
gtk = {
enable = true;
colorScheme = "dark";
gtk4.theme = null;
iconTheme = {
name = "Papirus";
package = pkgs.papirus-icon-theme;
};
cursorTheme = {
name = "Bibata-Modern-Classic";
package = pkgs.bibata-cursors;
};
};
# Fix for steam cursor
home.file.".local/share/icons/default" = {
source = "${pkgs.bibata-cursors}/share/icons/Bibata-Modern-Classic/";
recursive = true;
};
}