Compare commits

..

No commits in common. "326c2c3127b76e37b4ec17206afbea103572440a" and "5737813aad3ca53e95c846b1da69f685c472d0fd" have entirely different histories.

5 changed files with 13 additions and 9 deletions

1
.gitignore vendored
View file

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

View file

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

View file

@ -32,6 +32,11 @@
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,17 +1,11 @@
{ 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 = 18; size = 16;
}; };
}; };
} }

6
vars/default.nix Normal file
View file

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