nichts/hosts/dragyx/common/configuration.nix

39 lines
740 B
Nix
Raw Normal View History

{ config, pkgs, ... }:
let
username = config.modules.other.system.username;
in
{
2024-04-14 22:54:16 +02:00
imports = [
../../../options/common/pin-registry.nix
../../../options/common/preserve-system.nix
../../../options/desktop/fonts.nix
];
services.locate = {
enable = true;
interval = "hourly";
package = pkgs.plocate;
localuser = null;
};
home-manager.users.${username} = {
programs.firefox.profiles = {
main = {
id = 0;
isDefault = true;
search.default = "DuckDuckGo";
extensions = with pkgs.nur.repos.rycee.firefox-addons; [
ublock-origin
bitwarden
darkreader
maya-dark
];
search.force = true;
};
};
};
}