This commit is contained in:
Asaki Yuki 2026-04-09 13:55:33 +07:00
parent a19f0bde5c
commit 3371d41a3c
6 changed files with 22 additions and 4 deletions

View file

@ -0,0 +1,11 @@
.titlebar-buttonbox-container {
display: none;
}
.titlebar-spacer {
width: 2.5px !important;
}
#TabsToolbar {
padding-left: 2.5px !important;
}

View file

@ -16,8 +16,6 @@
nixpkgs.config.allowUnfree = true;
programs.firefox.enable = true;
nix.settings.experimental-features = [
"nix-command"
"flakes"

View file

@ -1,5 +1,6 @@
{
inputs,
libs,
config,
pkgs,
custom,
@ -15,7 +16,7 @@ in
};
home-manager.users.asakiyuki = {
_module.args = { inherit inputs osconfig custom; };
_module.args = { inherit inputs osconfig custom libs; };
imports = [
./modules/programs.nix
./modules/files.nix

View file

@ -1,4 +1,4 @@
{ pkgs, osconfig, ... }:
{ pkgs, lib, osconfig, ... }:
{
home.file = {
".config/qt5ct/colors/Catppuccin-Mocha.conf".source = "${pkgs.catppuccin-qt5ct}/share/qt5ct/colors/catppuccin-mocha-sapphire.conf";
@ -7,6 +7,7 @@
".local/share/kio/servicemenus/open-with-code.desktop".source = ../../../configs/services-menu/open-with-code.desktop;
".local/share/kio/servicemenus/open-ghostty-here.desktop".source = ../../../configs/services-menu/open-ghostty-here.desktop;
".mozilla/firefox/default/search.json.mozlz4".force = lib.mkForce true;
".config/dolphinrc" = {
force = true;
source = ../../../configs/dolphinrc;

View file

@ -2,6 +2,7 @@
imports = [
(../../../modules/features/home/ghostty.nix)
(../../../modules/features/home/kitty.nix)
(../../../modules/features/home/browsers.nix)
(../../../modules/features/home/bash.nix)
(../../../modules/features/home/starship.nix)

View file

@ -6,6 +6,12 @@
profiles.default = {
settings = {
"browser.startup.homepage" = "about:home";
"devtools.chrome.enabled" = true;
"devtools.debugger.remote-enabled" = true;
"toolkit.legacyUserProfileCustomizations.stylesheets" = true;
"full-screen-api.warning.timeout" = 0;
};
search = {