move hyprland to subfolder

This commit is contained in:
Benjamin Palko 2024-07-20 13:02:26 -04:00
parent 6f25d234c3
commit f1061c3c8c
6 changed files with 66 additions and 43 deletions

View file

@ -1,4 +0,0 @@
[Settings]
gtk-application-prefer-dark-theme=1
gtk-cursor-theme-name=catpuccin-mocha-light-cursors

View file

@ -1,4 +0,0 @@
[Settings]
gtk-application-prefer-dark-theme=1
gtk-cursor-theme-name=catpuccin-mocha-light-cursors

View file

@ -1,33 +0,0 @@
{ ... }:
{
xdg.configFile = {
"gtk-3.0" = {
source = ../gtk-3.0;
recursive = true;
};
"gtk-4.0" = {
source = ../gtk-4.0;
recursive = true;
};
hypr = {
source = ../hypr;
recursive = true;
};
rofi = {
source = ../rofi;
recursive = true;
};
swaync = {
source = ../swaync;
recursive = true;
};
wal = {
source = ../wal;
recursive = true;
};
waybar = {
source = ../waybar;
recursive = true;
};
};
}

View file

@ -0,0 +1,57 @@
{ pkgs, ... }:
{
home.pointerCursor = {
gtk.enable = true;
# x11.enable = true;
package = pkgs.catppuccin-cursors;
name = "catpuccin-mocha-light-cursors";
size = 24;
};
wayland.windowManager.hyprland = {
enable = true;
};
gtk = {
enable = true;
gtk3.extraConfig = {
gtk-application-prefer-dark-theme = 1;
};
gtk4.extraConfig = {
gtk-application-prefer-dark-theme = 1;
};
theme = {
package = pkgs.whitesur-gtk-theme;
name = "Whitesur-dark";
};
iconTheme = {
package = pkgs.whitesur-icon-theme;
name = "Whitesur-Dark";
};
};
xdg.configFile = {
hypr = {
source = ../../hypr;
recursive = true;
};
rofi = {
source = ../../rofi;
recursive = true;
};
swaync = {
source = ../../swaync;
recursive = true;
};
wal = {
source = ../../wal;
recursive = true;
};
waybar = {
source = ../../waybar;
recursive = true;
};
};
}

View file

@ -2,10 +2,17 @@
{
programs.hyprland = {
enable = true;
xwayland.enable = true;
};
programs.hyprlock.enable = true;
services.hypridle.enable = true;
programs.thunar.enable = true;
programs.thunar = {
enable = true;
plugins = with pkgs.xfce; [
thunar-archive-plugin
thunar-volman
];
};
environment.systemPackages = with pkgs; [
hyprcursor

View file

@ -39,7 +39,7 @@ in
home.homeDirectory = "/home/${username}";
imports = [
../home-manager/git.nix
../home-manager/hyprland.nix
../home-manager/hyprland
../home-manager/media.nix
../home-manager/nvim.nix
../home-manager/terminal.nix