Compare commits

..

2 commits

Author SHA1 Message Date
willifan
326c2c3127 fixed cursor environment variables 2024-05-20 17:35:21 +02:00
willifan
6c4eab1e9d untracked vars 2024-05-20 15:38:02 +02:00
5 changed files with 9 additions and 13 deletions

1
.gitignore vendored Normal file
View file

@ -0,0 +1 @@
vars/*

View file

@ -35,7 +35,7 @@
"x86_64-linux" "x86_64-linux"
]; ];
inherit (nixpkgs) lib; 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; }; specialArgs = { inherit inputs outputs configVars nixpkgs; };
in in
{ {

View file

@ -32,11 +32,6 @@
xwayland.force_zero_scaling = true; xwayland.force_zero_scaling = true;
env = [
"XCURSOR_SIZE, 24"
"HYPRCURSOR_SIZE,24"
];
input = { input = {
kb_layout = "de"; kb_layout = "de";
kb_variant = ""; kb_variant = "";

View file

@ -1,11 +1,17 @@
{ pkgs, home-manager, ... }: { pkgs, home-manager, ... }:
{ {
environment.sessionVariables = {
XCURSOR_SIZE = "18";
HYPRCURSOR_SIZE = "18";
};
home-manager.users.willifan = { home-manager.users.willifan = {
home.pointerCursor = { home.pointerCursor = {
gtk.enable = true; gtk.enable = true;
name = "Bibata-Modern-Classic"; name = "Bibata-Modern-Classic";
package = pkgs.bibata-cursors; package = pkgs.bibata-cursors;
size = 16; size = 18;
}; };
}; };
} }

View file

@ -1,6 +0,0 @@
{ ... }:
{
username = "willifan";
hostname = "Puenktchen";
email = "willifan@proton.me";
}