remove legacy nixpkgs config.nix, integrate into home-manager config

modularise-config
Trolli Schmittlauch 2023-05-03 01:59:52 +02:00
parent 35bb7901e5
commit 6d00605219
2 changed files with 10 additions and 12 deletions

View File

@ -1,12 +0,0 @@
{ lib, ...}:
{
firefox.enablePlasmaBrowserIntegration = true;
firefox-bin.enablePlasmaBrowserIntegration = true;
clementine.spotify = false;
vim =
{ gui = "gtk3";
python = true;
multibyteSupport = true;
};
}

View File

@ -259,6 +259,16 @@ in
{
nixpkgs.overlays = (import ./overlays.nix);
nixpkgs.config = {
firefox.enablePlasmaBrowserIntegration = true;
firefox-bin.enablePlasmaBrowserIntegration = true;
clementine.spotify = false;
vim =
{ gui = "gtk3";
python = true;
multibyteSupport = true;
};
};
home.packages =
desktopApps