diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..5ee7df0 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +vars/* \ No newline at end of file diff --git a/flake.nix b/flake.nix index 2ff62f8..f4072b3 100644 --- a/flake.nix +++ b/flake.nix @@ -35,7 +35,7 @@ "x86_64-linux" ]; inherit (nixpkgs) lib; - configVars = import ./vars { inherit inputs lib; }; + configVars = import /home/willifan/.nix-config/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 7fe54a0..e3f6a11 100644 --- a/users/willifan/graphical/hyprland/hyprland.nix +++ b/users/willifan/graphical/hyprland/hyprland.nix @@ -32,11 +32,6 @@ 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 3613e91..0da61b1 100644 --- a/users/willifan/graphical/theme/cursor.nix +++ b/users/willifan/graphical/theme/cursor.nix @@ -1,11 +1,17 @@ { 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 = 16; + size = 18; }; }; } \ No newline at end of file diff --git a/vars/default.nix b/vars/default.nix deleted file mode 100644 index 3312995..0000000 --- a/vars/default.nix +++ /dev/null @@ -1,6 +0,0 @@ -{ ... }: -{ - username = "willifan"; - hostname = "Puenktchen"; - email = "willifan@proton.me"; -}