Package : Remove firefox from system-wide configuration, leave to HM to configure.
This commit is contained in:
parent
1f86940f57
commit
4691493de5
|
@ -267,7 +267,13 @@
|
||||||
x86LinuxRoot = mkCommonHome "root" "/root" "x86_64-linux" [];
|
x86LinuxRoot = mkCommonHome "root" "/root" "x86_64-linux" [];
|
||||||
in nixpkgs.lib.foldl' (acc: h: acc // h) {} [
|
in nixpkgs.lib.foldl' (acc: h: acc // h) {} [
|
||||||
x86LinuxRoot
|
x86LinuxRoot
|
||||||
(x86LinuxHome "voronind" [])
|
(x86LinuxHome "voronind" [
|
||||||
|
{
|
||||||
|
home.hm.package = {
|
||||||
|
common.enable = true;
|
||||||
|
};
|
||||||
|
}
|
||||||
|
])
|
||||||
];
|
];
|
||||||
|
|
||||||
# Android.
|
# Android.
|
||||||
|
|
|
@ -72,7 +72,7 @@
|
||||||
|
|
||||||
common = with pkgs; [
|
common = with pkgs; [
|
||||||
evince # Document viewer.
|
evince # Document viewer.
|
||||||
firefox-esr chromium # Web browser. And chromium just in case.
|
chromium # Just in case I ever need it.
|
||||||
gimp # Image manipulation program.
|
gimp # Image manipulation program.
|
||||||
gnome-calculator # Calculator.
|
gnome-calculator # Calculator.
|
||||||
gparted # GUI disk utility just in case.
|
gparted # GUI disk utility just in case.
|
||||||
|
@ -87,9 +87,9 @@
|
||||||
];
|
];
|
||||||
|
|
||||||
gaming = with pkgs; [
|
gaming = with pkgs; [
|
||||||
steam-run # Run games outside of Steam.
|
|
||||||
steam bottles dxvk gamescope mangohud vkd3d wine64 # Gaming!
|
|
||||||
scanmem # Memory edit tool.
|
scanmem # Memory edit tool.
|
||||||
|
steam bottles dxvk gamescope mangohud vkd3d wine64 # Gaming!
|
||||||
|
steam-run # Run games outside of Steam.
|
||||||
];
|
];
|
||||||
|
|
||||||
creative = with pkgs; [
|
creative = with pkgs; [
|
||||||
|
@ -101,8 +101,8 @@
|
||||||
dev = with pkgs; [
|
dev = with pkgs; [
|
||||||
android-studio
|
android-studio
|
||||||
jetbrains.idea-community
|
jetbrains.idea-community
|
||||||
nixd # Nix LSP.
|
|
||||||
ltex-ls # Latex LSP for neovim spellcheck.
|
ltex-ls # Latex LSP for neovim spellcheck.
|
||||||
|
nixd # Nix LSP.
|
||||||
];
|
];
|
||||||
|
|
||||||
extra = with pkgs; [
|
extra = with pkgs; [
|
||||||
|
@ -113,7 +113,6 @@
|
||||||
cbonsai cmatrix # CLI Screensavers.
|
cbonsai cmatrix # CLI Screensavers.
|
||||||
cowsay lolcat # CLI funni.
|
cowsay lolcat # CLI funni.
|
||||||
gnome-font-viewer # Font viewer.
|
gnome-font-viewer # Font viewer.
|
||||||
# ollama # LLMs.
|
|
||||||
tor-browser # Privacy browser.
|
tor-browser # Privacy browser.
|
||||||
universal-android-debloater # Debloat Android devices.
|
universal-android-debloater # Debloat Android devices.
|
||||||
];
|
];
|
||||||
|
|
Loading…
Reference in a new issue