Compare commits
2 commits
5737813aad
...
326c2c3127
Author | SHA1 | Date | |
---|---|---|---|
|
326c2c3127 | ||
|
6c4eab1e9d |
5 changed files with 9 additions and 13 deletions
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
||||||
|
vars/*
|
|
@ -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
|
||||||
{
|
{
|
||||||
|
|
|
@ -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 = "";
|
||||||
|
|
|
@ -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;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
|
@ -1,6 +0,0 @@
|
||||||
{ ... }:
|
|
||||||
{
|
|
||||||
username = "willifan";
|
|
||||||
hostname = "Puenktchen";
|
|
||||||
email = "willifan@proton.me";
|
|
||||||
}
|
|
Loading…
Add table
Add a link
Reference in a new issue