idk
This commit is contained in:
parent
a19f0bde5c
commit
3371d41a3c
6 changed files with 22 additions and 4 deletions
|
|
@ -0,0 +1,11 @@
|
||||||
|
.titlebar-buttonbox-container {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.titlebar-spacer {
|
||||||
|
width: 2.5px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
#TabsToolbar {
|
||||||
|
padding-left: 2.5px !important;
|
||||||
|
}
|
||||||
|
|
@ -16,8 +16,6 @@
|
||||||
|
|
||||||
nixpkgs.config.allowUnfree = true;
|
nixpkgs.config.allowUnfree = true;
|
||||||
|
|
||||||
programs.firefox.enable = true;
|
|
||||||
|
|
||||||
nix.settings.experimental-features = [
|
nix.settings.experimental-features = [
|
||||||
"nix-command"
|
"nix-command"
|
||||||
"flakes"
|
"flakes"
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,6 @@
|
||||||
{
|
{
|
||||||
inputs,
|
inputs,
|
||||||
|
libs,
|
||||||
config,
|
config,
|
||||||
pkgs,
|
pkgs,
|
||||||
custom,
|
custom,
|
||||||
|
|
@ -15,7 +16,7 @@ in
|
||||||
};
|
};
|
||||||
|
|
||||||
home-manager.users.asakiyuki = {
|
home-manager.users.asakiyuki = {
|
||||||
_module.args = { inherit inputs osconfig custom; };
|
_module.args = { inherit inputs osconfig custom libs; };
|
||||||
imports = [
|
imports = [
|
||||||
./modules/programs.nix
|
./modules/programs.nix
|
||||||
./modules/files.nix
|
./modules/files.nix
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
{ pkgs, osconfig, ... }:
|
{ pkgs, lib, osconfig, ... }:
|
||||||
{
|
{
|
||||||
home.file = {
|
home.file = {
|
||||||
".config/qt5ct/colors/Catppuccin-Mocha.conf".source = "${pkgs.catppuccin-qt5ct}/share/qt5ct/colors/catppuccin-mocha-sapphire.conf";
|
".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-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;
|
".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" = {
|
".config/dolphinrc" = {
|
||||||
force = true;
|
force = true;
|
||||||
source = ../../../configs/dolphinrc;
|
source = ../../../configs/dolphinrc;
|
||||||
|
|
|
||||||
|
|
@ -2,6 +2,7 @@
|
||||||
imports = [
|
imports = [
|
||||||
(../../../modules/features/home/ghostty.nix)
|
(../../../modules/features/home/ghostty.nix)
|
||||||
(../../../modules/features/home/kitty.nix)
|
(../../../modules/features/home/kitty.nix)
|
||||||
|
(../../../modules/features/home/browsers.nix)
|
||||||
|
|
||||||
(../../../modules/features/home/bash.nix)
|
(../../../modules/features/home/bash.nix)
|
||||||
(../../../modules/features/home/starship.nix)
|
(../../../modules/features/home/starship.nix)
|
||||||
|
|
|
||||||
|
|
@ -6,6 +6,12 @@
|
||||||
profiles.default = {
|
profiles.default = {
|
||||||
settings = {
|
settings = {
|
||||||
"browser.startup.homepage" = "about:home";
|
"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 = {
|
search = {
|
||||||
|
|
|
||||||
Reference in a new issue