mirror of
https://github.com/thilobillerbeck/dotfiles.git
synced 2024-11-09 19:19:23 +01:00
32 lines
644 B
Nix
32 lines
644 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;
|
|
};
|
|
|
|
home.sessionVariables = {
|
|
LD_LIBRARY_PATH = "${pkgs.libGL}/lib";
|
|
};
|
|
|
|
nix = {
|
|
package = pkgs.nixVersions.latest;
|
|
};
|
|
|
|
home.packages = with pkgs; [ pkgs.nixVersions.latest ];
|
|
};
|
|
};
|
|
}
|