thelio76: get theme working better

This commit is contained in:
Alex 2024-08-01 18:32:26 -04:00
parent 93198289c7
commit e91134aec1
6 changed files with 28 additions and 15 deletions

View File

@ -18,6 +18,8 @@
# Mouse 3 button (right mouse) resize by corner: # Mouse 3 button (right mouse) resize by corner:
bspc config pointer_action2 resize_corner bspc config pointer_action2 resize_corner
${pkgs.feh}/bin/feh --bg-fill ${pkgs.atau-pkgs.atau-wallpapers}/share/backgrounds/atau-wallpapers/aos1.png
''; '';
startupPrograms = [ "picom" "polybar primary" "polybar secondary" ]; startupPrograms = [ "picom" "polybar primary" "polybar secondary" ];
}; };

View File

@ -1,14 +1,19 @@
{ pkgs, ... }: { pkgs, ... }:
{ {
# WM/DE config # WM/DE config
gtk = { gtk = with pkgs.atau-pkgs;
enable = true; {
font.name = "Victor Mono SemiBold 12"; enable = true;
theme = { font.name = "Victor Mono SemiBold 12";
name = "SolArc-Dark"; theme = {
package = pkgs.solarc-gtk-theme; name = "Mac-OS-9";
package = gtk-theme-mac-os-9;
};
iconTheme = {
name = "NineIcons";
package = nineicons-redux;
};
}; };
};
xsession.enable = true; xsession.enable = true;

View File

@ -77,7 +77,7 @@
"super + {Left,Down,Up,Right}" = "super + {Left,Down,Up,Right}" =
" bspc node -v {-20 0,0 20,0 -20,20 0}"; " bspc node -v {-20 0,0 20,0 -20,20 0}";
"Super_L; @Super_L" = "rofi -show drun -monitor $(bspc query --monitors -m focused --names)"; "Super_L; @Super_L" = "rofi -show drun -show-icons -monitor $(bspc query --monitors -m focused --names)";
}; };
}; };
} }

View File

@ -19,6 +19,11 @@
# Packages that should be installed to the user profile. # Packages that should be installed to the user profile.
home.packages = with pkgs; [ home.packages = with pkgs; [
atau-pkgs.nineicons-redux
atau-pkgs.theme-platinum9
atau-pkgs.gtk-theme-mac-os-9
themechanger
aseprite aseprite
audacity audacity
blender blender

View File

@ -7,17 +7,17 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1687541340, "lastModified": 1722548406,
"narHash": "sha256-l1Va3mygpLmtV0CeaHGETvb0y5SwWD3kM4dBu5IX9Jw=", "narHash": "sha256-E4aw+cCGEvFUcB9F55lUyZnclSE2L+ENCTOzmeQPQxI=",
"ref": "main", "ref": "main",
"rev": "1e72f4b1e9b7a2991e3ccdebbe75d312f016da3b", "rev": "36c303d6a273cba06d68964c98aee0eb79928b2b",
"revCount": 10, "revCount": 15,
"type": "git", "type": "git",
"url": "https://git.atauno.com/atau/atau-nixpkgs" "url": "https://git.atauno.com/atau/atau-nixpkgs"
}, },
"original": { "original": {
"ref": "main", "ref": "main",
"rev": "1e72f4b1e9b7a2991e3ccdebbe75d312f016da3b", "rev": "36c303d6a273cba06d68964c98aee0eb79928b2b",
"type": "git", "type": "git",
"url": "https://git.atauno.com/atau/atau-nixpkgs" "url": "https://git.atauno.com/atau/atau-nixpkgs"
} }

View File

@ -16,12 +16,12 @@
}; };
atau-nixpkgs = { atau-nixpkgs = {
url = "git+https://git.atauno.com/atau/atau-nixpkgs?ref=main&rev=1e72f4b1e9b7a2991e3ccdebbe75d312f016da3b"; url = "git+https://git.atauno.com/atau/atau-nixpkgs?ref=main&rev=36c303d6a273cba06d68964c98aee0eb79928b2b";
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
}; };
}; };
outputs = { self, nixpkgs, home-manager, firefox-addons, ... }@flake-inputs: outputs = { self, nixpkgs, home-manager, firefox-addons, atau-nixpkgs, ... }@flake-inputs:
let let
pcUser = "alex"; pcUser = "alex";
pcSystem = "x86_64-linux"; pcSystem = "x86_64-linux";
@ -30,6 +30,7 @@
mkPcSystem = { user ? pcUser, hostname, system ? pcSystem, inputs ? flake-inputs }: nixpkgs.lib.nixosSystem { mkPcSystem = { user ? pcUser, hostname, system ? pcSystem, inputs ? flake-inputs }: nixpkgs.lib.nixosSystem {
inherit system; inherit system;
modules = [ modules = [
({ config, pkgs, ... }: { nixpkgs.overlays = [ atau-nixpkgs.overlays.default ]; })
./config/hosts/${hostname} ./config/hosts/${hostname}
] ++ (import ./config/modules/home-manager.nix { ] ++ (import ./config/modules/home-manager.nix {
inherit system inputs user; inherit system inputs user;