Compare commits

..

No commits in common. "7c1c51954ead2f740e27ddc1a3f1c178f9301492" and "64958b068f62bbcac8d939d2b2002dfb8de62926" have entirely different histories.

4 changed files with 7 additions and 27 deletions

View File

@ -24,11 +24,5 @@ in
name = "Papirus-Dark"; name = "Papirus-Dark";
package = pkgs.papirus-icon-theme; package = pkgs.papirus-icon-theme;
}; };
cursorTheme = {
package = pkgs.apple-cursor;
name = "macOS-BigSur";
size = 24;
};
}; };
} }

View File

@ -165,7 +165,7 @@ in
# power saving # power saving
blur.enabled = false; blur.enabled = false;
# power saving # power saving
shadow.enabled = false; # drop_shadow = false;
}; };
# Dwindle layout # Dwindle layout
@ -182,22 +182,6 @@ in
mfact = 0.5; # Do not make master bigger mfact = 0.5; # Do not make master bigger
}; };
animations = {
enabled = true;
animation = [
"windows,1,3,default,slide"
"fade,1,3,default"
"layers,1,3,default,slide"
"border,1,3,default"
"workspaces,1,3,default,slide"
];
};
exec = [
"hyprctl setcursor ${config.gtk.cursorTheme.name} ${toString config.gtk.cursorTheme.size}"
];
misc = { misc = {
# disable auto polling for config file changes # disable auto polling for config file changes
disable_autoreload = true; disable_autoreload = true;
@ -352,7 +336,7 @@ in
swaylock = lib.getExe config.programs.swaylock.package; swaylock = lib.getExe config.programs.swaylock.package;
in in
lib.optionals config.programs.swaylock.enable [ lib.optionals config.programs.swaylock.enable [
"$mod,TAB,exec,${swaylock} --ignore-empty-password --color=000000 --daemonize" "$mod,TAB,exec,${swaylock} -S --grace 2 --grace-no-mouse"
] ]
) )
++ ++

View File

@ -34,9 +34,9 @@ in
iconTheme = julianCfg.gtk.iconTheme; iconTheme = julianCfg.gtk.iconTheme;
theme = julianCfg.gtk.theme; theme = julianCfg.gtk.theme;
# font = julianCfg.fontProfiles.regular; # TODO: do # font = julianCfg.fontProfiles.regular; # TODO: do
cursorTheme = { # cursorTheme = {
inherit (julianCfg.gtk.cursorTheme) name package; # inherit (julianCfg.gtk.cursorTheme) name package;
}; # }; # TODO: fix
# settings.background = { # settings.background = {
# path = julianCfg.wallpaper; # path = julianCfg.wallpaper;
# fit = "Cover"; # fit = "Cover";

View File

@ -5,6 +5,8 @@
}: }:
{ {
imports = [ imports = [
# inputs.hardware.nixosModules.common-cpu-amd # TODO something useful for me?
./hardware-configuration.nix ./hardware-configuration.nix
../common/global ../common/global