move hyprland to subfolder
This commit is contained in:
parent
6f25d234c3
commit
f1061c3c8c
6 changed files with 66 additions and 43 deletions
|
|
@ -1,4 +0,0 @@
|
||||||
[Settings]
|
|
||||||
gtk-application-prefer-dark-theme=1
|
|
||||||
gtk-cursor-theme-name=catpuccin-mocha-light-cursors
|
|
||||||
|
|
||||||
|
|
@ -1,4 +0,0 @@
|
||||||
[Settings]
|
|
||||||
gtk-application-prefer-dark-theme=1
|
|
||||||
gtk-cursor-theme-name=catpuccin-mocha-light-cursors
|
|
||||||
|
|
||||||
|
|
@ -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;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
||||||
57
home-manager/hyprland/default.nix
Normal file
57
home-manager/hyprland/default.nix
Normal 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;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
@ -2,10 +2,17 @@
|
||||||
{
|
{
|
||||||
programs.hyprland = {
|
programs.hyprland = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
xwayland.enable = true;
|
||||||
};
|
};
|
||||||
programs.hyprlock.enable = true;
|
programs.hyprlock.enable = true;
|
||||||
services.hypridle.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; [
|
environment.systemPackages = with pkgs; [
|
||||||
hyprcursor
|
hyprcursor
|
||||||
|
|
|
||||||
|
|
@ -39,7 +39,7 @@ in
|
||||||
home.homeDirectory = "/home/${username}";
|
home.homeDirectory = "/home/${username}";
|
||||||
imports = [
|
imports = [
|
||||||
../home-manager/git.nix
|
../home-manager/git.nix
|
||||||
../home-manager/hyprland.nix
|
../home-manager/hyprland
|
||||||
../home-manager/media.nix
|
../home-manager/media.nix
|
||||||
../home-manager/nvim.nix
|
../home-manager/nvim.nix
|
||||||
../home-manager/terminal.nix
|
../home-manager/terminal.nix
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue