chore: init

This commit is contained in:
Nick 2025-10-01 19:51:55 -05:00
commit 1b2c1ea359
891 changed files with 37053 additions and 0 deletions

View file

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