mirror of
https://github.com/thilobillerbeck/dotfiles.git
synced 2024-11-09 19:19:23 +01:00
30 lines
697 B
Nix
30 lines
697 B
Nix
{ inputs, pkgs, ... }:
|
|
|
|
{
|
|
home-manager = {
|
|
useGlobalPkgs = true;
|
|
useUserPackages = true;
|
|
extraSpecialArgs = { inherit inputs; };
|
|
users.thilo = {
|
|
imports = [ ./../../home-manager/modules/machine.nix ];
|
|
|
|
machine = {
|
|
username = "thilo";
|
|
isGeneric = false;
|
|
isGnome = false;
|
|
noiseSuppression.enable = true;
|
|
isGraphical = true;
|
|
};
|
|
|
|
/* xsession.pointerCursor = {
|
|
name = "Bibata-Modern-Classic";
|
|
package = pkgs.bibata-cursors;
|
|
size = 128;
|
|
}; */
|
|
|
|
home.sessionVariables = { LD_LIBRARY_PATH = "${pkgs.libGL}/lib"; };
|
|
|
|
home.packages = with pkgs; [ libsForQt5.discover ];
|
|
};
|
|
};
|
|
}
|