mirror of
https://github.com/thilobillerbeck/dotfiles.git
synced 2024-11-10 03:19:25 +01:00
28 lines
685 B
Nix
28 lines
685 B
Nix
{ inputs, ... }:
|
|
|
|
{
|
|
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;
|
|
};
|
|
|
|
services.kdeconnect.enable = true;
|
|
services.kdeconnect.indicator = true;
|
|
|
|
programs.topgrade.settings = {
|
|
linux.nix_arguments = "--flake --impure ";
|
|
pre_commands.upgrade_flakes = "cd /home/thilo/.nixos-config && nix flake update";
|
|
};
|
|
};
|
|
}
|