mirror of
https://github.com/Superredstone/nixos.git
synced 2026-06-17 15:24:39 +02:00
fix: make portals great again!
This commit is contained in:
+21
-1
@@ -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;
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user