mirror of
https://github.com/thilobillerbeck/dotfiles.git
synced 2024-11-10 03:19:25 +01:00
37 lines
791 B
Nix
37 lines
791 B
Nix
{ inputs, pkgs, ... }:
|
|
|
|
{
|
|
home-manager.useGlobalPkgs = true;
|
|
home-manager.useUserPackages = true;
|
|
home-manager.extraSpecialArgs = { inherit inputs; };
|
|
home-manager.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;
|
|
};
|
|
|
|
services.kdeconnect.enable = true;
|
|
services.kdeconnect.indicator = true;
|
|
|
|
home.sessionVariables = {
|
|
LD_LIBRARY_PATH = "${pkgs.libGL}/lib";
|
|
};
|
|
|
|
home.packages = with pkgs; [
|
|
libsForQt5.discover
|
|
];
|
|
};
|
|
}
|