themes & stuff

This commit is contained in:
notohh 2022-12-14 19:26:48 -05:00
parent 57fd891882
commit b52c64e8cf
3 changed files with 31 additions and 14 deletions

View file

@ -91,7 +91,7 @@
packages = with pkgs; [ packages = with pkgs; [
# essential # essential
firefox firefox
neovim neovim
neofetch neofetch
bitwarden bitwarden
discord discord
@ -99,16 +99,18 @@
spotifyd spotifyd
mpv mpv
# coding
jetbrains.pycharm-community
lazygit
# utility # utility
hyprpaper eww
waybar waybar
streamlink streamlink
ranger ranger
btop btop
obsidian obsidian
lazygit
obs-studio obs-studio
obs-studio-plugins.wlrobs
pavucontrol pavucontrol
unzip unzip
etcher etcher
@ -117,8 +119,8 @@
playerctl playerctl
# entertainment # entertainment
ani-cli ani-cli
trackma trackma
# gaming # gaming
steam steam
@ -127,6 +129,11 @@
bottles bottles
gamescope gamescope
# theming
catppuccin-gtk
catppuccin-cursors
papirus-folders
# fun stuff # fun stuff
cbonsai cbonsai
pipes-rs pipes-rs
@ -165,6 +172,8 @@
lz4 lz4
python3 python3
python3.pkgs.pip python3.pkgs.pip
gnome-themes-extra
gtk-engine-murrine
]; ];

View file

@ -3,8 +3,8 @@
inputs = { inputs = {
# Nixpkgs # Nixpkgs
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable"; nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
# Call hyprland # Call hyprland
hyprland = { hyprland = {
@ -14,9 +14,12 @@
}; };
# Home manager # Home manager
home-manager.url = "github:nix-community/home-manager"; home-manager = {
home-manager.inputs.nixpkgs.follows = "nixpkgs"; url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
};
# hardware.url = "github:nixos/nixos-hardware"; # hardware.url = "github:nixos/nixos-hardware";
# Shameless plug: looking for a way to nixify your themes and make # Shameless plug: looking for a way to nixify your themes and make

View file

@ -1,4 +1,4 @@
{ config, pkgs, lib, ... }: { config, pkgs, lib, inputs, ... }:
let let
dbus-hyprland-environment = pkgs.writeTextFile { dbus-hyprland-environment = pkgs.writeTextFile {
@ -23,7 +23,7 @@ let
in '' in ''
export XDG_DATA_DIRS=${datadir}:$XDG_DATA_DIRS export XDG_DATA_DIRS=${datadir}:$XDG_DATA_DIRS
gnome_schema=org.gnome.desktop.interface gnome_schema=org.gnome.desktop.interface
gesettings set $gnome_schema gtk-theme 'Adwaita' gesettings set $gnome_schema gtk-theme 'Catppuccin-Mocha-Pink-Dark'
''; '';
}; };
@ -51,7 +51,10 @@ in
xdg.portal = { xdg.portal = {
enable = true; enable = true;
wlr.enable = true; wlr.enable = true;
extraPortals = [ pkgs.xdg-desktop-portal-gtk ]; extraPortals = [
pkgs.xdg-desktop-portal-gtk
];
gtkUsePortal = true; gtkUsePortal = true;
}; };
@ -76,8 +79,10 @@ in
"$HOME/bin/:$PATH" "$HOME/bin/:$PATH"
]; ];
GTK_THEME = "Catppuccin-Pink-Dark";
#SWW #SWW
SWWW_TRANSITION_TYPE = "center"; SWWW_TRANSITION_TYPE = "";
SWWW_TRANSITION_FPS = "60"; SWWW_TRANSITION_FPS = "60";