feat: switched back to hyprland

This commit is contained in:
Nick 2025-01-08 01:05:45 -06:00
parent dd99b3a827
commit b0dc23c7c0
144 changed files with 1347 additions and 477 deletions

View file

@ -14,6 +14,11 @@
overflow: visible !important;
}
.titlebar-buttonbox-container {
display: none !important;
}
/* Nav bar */
/* #nav-bar {
height: 0px;

View file

@ -7,6 +7,11 @@
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;
@ -16,19 +21,19 @@ in {
isDefault = true;
id = 0;
}
// (import (configPath + /bookmarks) {inherit flake;})
// (import (configPath + /extensions) {inherit pkgs;})
// (import (configPath + /search) {inherit flake;})
// (import (configPath + /settings))
// (import (configPath + /themes));
// bookmarksPath
// extensionsPath
// searchPath
// settingsPath
// themesPath;
testing =
{
isDefault = false;
id = 1;
}
// (import (configPath + /bookmarks) {inherit flake;})
// (import (configPath + /search) {inherit flake;})
// (import (configPath + /themes));
// bookmarksPath
// searchPath
// themesPath;
};
};
}