2024-06-21 15:47:12 +02:00
|
|
|
{ inputs
|
|
|
|
, pkgs
|
|
|
|
, config
|
|
|
|
, ...
|
2024-06-05 01:00:27 +02:00
|
|
|
}:
|
2023-10-28 23:51:26 +02:00
|
|
|
|
2023-10-28 23:16:29 +02:00
|
|
|
{
|
2024-02-27 02:54:02 +01:00
|
|
|
home-manager = {
|
|
|
|
useGlobalPkgs = true;
|
|
|
|
useUserPackages = true;
|
2024-05-28 14:38:22 +02:00
|
|
|
extraSpecialArgs = {
|
|
|
|
inherit inputs;
|
|
|
|
};
|
2024-02-27 02:54:02 +01:00
|
|
|
users.thilo = {
|
|
|
|
imports = [ ./../../home-manager/modules/machine.nix ];
|
2023-10-28 23:16:29 +02:00
|
|
|
|
2024-02-27 02:54:02 +01:00
|
|
|
machine = {
|
|
|
|
username = "thilo";
|
|
|
|
isGeneric = false;
|
|
|
|
isGnome = false;
|
|
|
|
noiseSuppression.enable = true;
|
|
|
|
isGraphical = true;
|
2024-06-05 01:00:27 +02:00
|
|
|
nixVersion = pkgs.lix;
|
2024-02-27 02:54:02 +01:00
|
|
|
};
|
2023-10-28 23:16:29 +02:00
|
|
|
|
2024-05-28 14:38:22 +02:00
|
|
|
/*
|
|
|
|
xsession.pointerCursor = {
|
|
|
|
name = "Bibata-Modern-Classic";
|
|
|
|
package = pkgs.bibata-cursors;
|
|
|
|
size = 128;
|
|
|
|
};
|
|
|
|
*/
|
2023-11-14 02:40:28 +01:00
|
|
|
|
2024-05-28 14:38:22 +02:00
|
|
|
home.sessionVariables = {
|
|
|
|
LD_LIBRARY_PATH = "${pkgs.libGL}/lib";
|
|
|
|
};
|
2024-01-09 01:21:11 +01:00
|
|
|
|
2024-06-05 01:00:27 +02:00
|
|
|
nix = {
|
|
|
|
package = pkgs.lix;
|
|
|
|
};
|
|
|
|
|
2024-06-21 15:47:12 +02:00
|
|
|
qt = {
|
|
|
|
enable = true;
|
|
|
|
platformTheme.name = "kde";
|
|
|
|
};
|
|
|
|
|
2024-06-05 01:00:27 +02:00
|
|
|
home.packages = with pkgs; [
|
2024-06-16 20:30:11 +02:00
|
|
|
lix
|
|
|
|
papirus-icon-theme
|
2024-06-05 01:00:27 +02:00
|
|
|
];
|
2024-02-27 02:54:02 +01:00
|
|
|
};
|
2023-10-28 23:16:29 +02:00
|
|
|
};
|
|
|
|
}
|