2023-11-13 23:58:18 +01:00
|
|
|
{ inputs, pkgs, ... }:
|
2023-11-06 23:43:36 +01:00
|
|
|
|
|
|
|
{
|
2024-02-27 02:54:02 +01:00
|
|
|
home-manager = {
|
|
|
|
useGlobalPkgs = true;
|
|
|
|
useUserPackages = true;
|
|
|
|
extraSpecialArgs = { inherit inputs; };
|
|
|
|
users.thilo = {
|
|
|
|
imports = [ ./../../home-manager/modules/machine.nix ];
|
2023-11-06 23:43:36 +01:00
|
|
|
|
2024-02-27 02:54:02 +01:00
|
|
|
machine = {
|
|
|
|
username = "thilo";
|
|
|
|
isGeneric = false;
|
|
|
|
isGnome = false;
|
|
|
|
noiseSuppression.enable = true;
|
|
|
|
isGraphical = true;
|
|
|
|
};
|
2023-11-06 23:43:36 +01:00
|
|
|
|
2024-02-27 02:54:02 +01:00
|
|
|
home.sessionVariables = { LD_LIBRARY_PATH = "${pkgs.libGL}/lib"; };
|
2023-11-21 00:38:02 +01:00
|
|
|
};
|
2023-11-06 23:43:36 +01:00
|
|
|
};
|
|
|
|
}
|