chore: quick push

This commit is contained in:
Nick 2025-03-09 03:44:52 -05:00
parent 26644da9a5
commit f3ed254c00
97 changed files with 149 additions and 2638 deletions

View file

@ -1,45 +1,11 @@
{
pkgs,
flake,
...
}:
let
inherit (flake.config.people)
user0
;
in
{
programs.firefox =
let
configPath = ./config;
bookmarksPath = import (configPath + /bookmarks) { inherit flake; };
extensionsPath = import (configPath + /extensions) { inherit pkgs; };
searchPath = import (configPath + /search) { inherit flake; };
settingsPath = import (configPath + /settings);
themesPath = import (configPath + /themes);
in
{
enable = true;
package = pkgs.firefox;
profiles = {
${user0} =
{
isDefault = true;
id = 0;
}
// bookmarksPath
// extensionsPath
// searchPath
// settingsPath
// themesPath;
testing =
{
isDefault = false;
id = 1;
}
// bookmarksPath
// searchPath
// themesPath;
};
};
home.packages = builtins.attrValues {
inherit (pkgs)
firefox
;
};
}