refactor(nix-hm): use bob-nvim as overlay
This commit is contained in:
parent
dd8b9f4ace
commit
faf51c679a
@ -1,4 +1,4 @@
|
|||||||
{ pkgs, config, bob, ... }:
|
{ pkgs, config, ... }:
|
||||||
let
|
let
|
||||||
dotsDir = "${config.home.homeDirectory}/.dot_files/dots";
|
dotsDir = "${config.home.homeDirectory}/.dot_files/dots";
|
||||||
softLinkDots = dir:
|
softLinkDots = dir:
|
||||||
@ -18,7 +18,7 @@ in
|
|||||||
programs.home-manager.enable = true;
|
programs.home-manager.enable = true;
|
||||||
home = {
|
home = {
|
||||||
packages = with pkgs; [
|
packages = with pkgs; [
|
||||||
bob.packages.${pkgs.system}.default
|
bob-nvim
|
||||||
sqlite
|
sqlite
|
||||||
luajit
|
luajit
|
||||||
imagemagick
|
imagemagick
|
||||||
|
@ -24,9 +24,6 @@
|
|||||||
targets.genericLinux.enable = true;
|
targets.genericLinux.enable = true;
|
||||||
homeConfigurations.${username} = home-manager.lib.homeManagerConfiguration {
|
homeConfigurations.${username} = home-manager.lib.homeManagerConfiguration {
|
||||||
pkgs = nixpkgs.legacyPackages.${system};
|
pkgs = nixpkgs.legacyPackages.${system};
|
||||||
extraSpecialArgs = {
|
|
||||||
inherit bob;
|
|
||||||
};
|
|
||||||
modules = [
|
modules = [
|
||||||
({
|
({
|
||||||
nixpkgs.overlays = [
|
nixpkgs.overlays = [
|
||||||
@ -38,6 +35,7 @@
|
|||||||
wrapProgram $out/bin/lxappearance --prefix GDK_BACKEND : x11
|
wrapProgram $out/bin/lxappearance --prefix GDK_BACKEND : x11
|
||||||
'';
|
'';
|
||||||
});
|
});
|
||||||
|
bob-nvim = bob.overlays.${system}.default;
|
||||||
opensnitch-ui = super.opensnitch-ui.overrideAttrs
|
opensnitch-ui = super.opensnitch-ui.overrideAttrs
|
||||||
(oldAttrs: rec {
|
(oldAttrs: rec {
|
||||||
propagatedBuildInputs = oldAttrs.propagatedBuildInputs ++ [
|
propagatedBuildInputs = oldAttrs.propagatedBuildInputs ++ [
|
||||||
|
Loading…
Reference in New Issue
Block a user