mirror of
https://github.com/Jokiller230/puzzlevision.git
synced 2025-01-18 18:03:06 +01:00
feat: add librewolf config overrides and enable blackbox config
Signed-off-by: Jo <johannesreckers2006@gmail.com>
This commit is contained in:
parent
ce89240d04
commit
cd55cda8a4
5 changed files with 25 additions and 0 deletions
|
@ -213,6 +213,10 @@
|
||||||
# Bluetooth
|
# Bluetooth
|
||||||
bluez
|
bluez
|
||||||
bluez-tools
|
bluez-tools
|
||||||
|
|
||||||
|
# Fonts
|
||||||
|
noto-fonts
|
||||||
|
noto-fonts-color-emoji
|
||||||
];
|
];
|
||||||
|
|
||||||
# https://nixos.wiki/wiki/FAQ/When_do_I_update_stateVersion
|
# https://nixos.wiki/wiki/FAQ/When_do_I_update_stateVersion
|
||||||
|
|
|
@ -1,5 +1,9 @@
|
||||||
{
|
{
|
||||||
|
inputs,
|
||||||
|
pkgs,
|
||||||
outputs,
|
outputs,
|
||||||
|
lib,
|
||||||
|
...
|
||||||
}: {
|
}: {
|
||||||
home.file.".local/share/blackbox/schemes/Catppuccin-Macchiato.json".source = "${outputs.resources.app-files}/blackbox/Catppuccin-Macchiato.json";
|
home.file.".local/share/blackbox/schemes/Catppuccin-Macchiato.json".source = "${outputs.resources.app-files}/blackbox/Catppuccin-Macchiato.json";
|
||||||
}
|
}
|
||||||
|
|
11
users/jo/apps/librewolf.nix
Normal file
11
users/jo/apps/librewolf.nix
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
{
|
||||||
|
inputs,
|
||||||
|
pkgs,
|
||||||
|
outputs,
|
||||||
|
lib,
|
||||||
|
...
|
||||||
|
}: {
|
||||||
|
home.file.".librewolf/librewolf.overrides.cfg".text = ''
|
||||||
|
defaultPref("identity.fxaccounts.enabled", true);
|
||||||
|
'';
|
||||||
|
}
|
|
@ -15,6 +15,7 @@
|
||||||
blur-my-shell
|
blur-my-shell
|
||||||
appindicator
|
appindicator
|
||||||
unite
|
unite
|
||||||
|
color-picker
|
||||||
];
|
];
|
||||||
|
|
||||||
# Use `dconf watch /` to track stateful changes you are doing, then set them here.
|
# Use `dconf watch /` to track stateful changes you are doing, then set them here.
|
||||||
|
@ -38,6 +39,7 @@
|
||||||
"blur-my-shell@aunetx"
|
"blur-my-shell@aunetx"
|
||||||
"appindicatorsupport@rgcjonas.gmail.com"
|
"appindicatorsupport@rgcjonas.gmail.com"
|
||||||
"unite@hardpixel.eu"
|
"unite@hardpixel.eu"
|
||||||
|
"color-picker@tuberry"
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -9,6 +9,8 @@
|
||||||
imports = [
|
imports = [
|
||||||
./desktop/gnome.nix
|
./desktop/gnome.nix
|
||||||
./apps/fish.nix
|
./apps/fish.nix
|
||||||
|
./apps/blackbox.nix
|
||||||
|
./apps/librewolf.nix
|
||||||
outputs.homeManagerModules.themes.catppuccin.global
|
outputs.homeManagerModules.themes.catppuccin.global
|
||||||
outputs.homeManagerModules.development.ssh
|
outputs.homeManagerModules.development.ssh
|
||||||
];
|
];
|
||||||
|
@ -36,6 +38,7 @@
|
||||||
|
|
||||||
packages = [
|
packages = [
|
||||||
"com.jeffser.Alpaca"
|
"com.jeffser.Alpaca"
|
||||||
|
"dev.aunetx.deezer"
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -47,6 +50,7 @@
|
||||||
lunar-client
|
lunar-client
|
||||||
steam
|
steam
|
||||||
g4music
|
g4music
|
||||||
|
librewolf
|
||||||
|
|
||||||
# For development
|
# For development
|
||||||
avra
|
avra
|
||||||
|
|
Loading…
Reference in a new issue