diff --git a/.gitignore b/.gitignore deleted file mode 100644 index 5ee7df0..0000000 --- a/.gitignore +++ /dev/null @@ -1 +0,0 @@ -vars/* \ No newline at end of file diff --git a/flake.nix b/flake.nix index f4072b3..2ff62f8 100644 --- a/flake.nix +++ b/flake.nix @@ -35,7 +35,7 @@ "x86_64-linux" ]; inherit (nixpkgs) lib; - configVars = import /home/willifan/.nix-config/vars { inherit inputs lib; }; + configVars = import ./vars { inherit inputs lib; }; specialArgs = { inherit inputs outputs configVars nixpkgs; }; in { diff --git a/users/willifan/graphical/hyprland/hyprland.nix b/users/willifan/graphical/hyprland/hyprland.nix index e3f6a11..7fe54a0 100644 --- a/users/willifan/graphical/hyprland/hyprland.nix +++ b/users/willifan/graphical/hyprland/hyprland.nix @@ -32,6 +32,11 @@ xwayland.force_zero_scaling = true; + env = [ + "XCURSOR_SIZE, 24" + "HYPRCURSOR_SIZE,24" + ]; + input = { kb_layout = "de"; kb_variant = ""; diff --git a/users/willifan/graphical/theme/cursor.nix b/users/willifan/graphical/theme/cursor.nix index 0da61b1..3613e91 100644 --- a/users/willifan/graphical/theme/cursor.nix +++ b/users/willifan/graphical/theme/cursor.nix @@ -1,17 +1,11 @@ { pkgs, home-manager, ... }: { - - environment.sessionVariables = { - XCURSOR_SIZE = "18"; - HYPRCURSOR_SIZE = "18"; - }; - home-manager.users.willifan = { home.pointerCursor = { gtk.enable = true; name = "Bibata-Modern-Classic"; package = pkgs.bibata-cursors; - size = 18; + size = 16; }; }; } \ No newline at end of file diff --git a/vars/default.nix b/vars/default.nix new file mode 100644 index 0000000..3312995 --- /dev/null +++ b/vars/default.nix @@ -0,0 +1,6 @@ +{ ... }: +{ + username = "willifan"; + hostname = "Puenktchen"; + email = "willifan@proton.me"; +}