mirror of
https://github.com/thilobillerbeck/dotfiles.git
synced 2024-11-21 15:48:48 +01:00
small hm improvements
This commit is contained in:
parent
4595fc264d
commit
8140ca0cca
5 changed files with 11 additions and 14 deletions
|
@ -24,6 +24,10 @@
|
|||
};
|
||||
suyu.url = "github:Noodlez1232/suyu-flake";
|
||||
nix-alien.url = "github:thiagokokada/nix-alien";
|
||||
nix-index-database = {
|
||||
url = "github:nix-community/nix-index-database";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
};
|
||||
|
||||
nixConfig = {
|
||||
|
@ -71,7 +75,10 @@
|
|||
homeConfigurations."thilo@thilo-pc" =
|
||||
home-manager.lib.homeManagerConfiguration {
|
||||
inherit pkgs;
|
||||
modules = [ ./configs/fedora/home.nix ];
|
||||
modules = [
|
||||
inputs.nix-index-database.hmModules.nix-index
|
||||
./configs/fedora/home.nix
|
||||
];
|
||||
extraSpecialArgs = { inherit inputs nixgl; };
|
||||
};
|
||||
homeConfigurations."thilo@thilo-laptop" =
|
||||
|
|
|
@ -117,16 +117,6 @@ with lib; {
|
|||
}]
|
||||
'';
|
||||
};
|
||||
activation = {
|
||||
setNodeGlobalDir = {
|
||||
after = [ "writeBoundary" "createXdgUserDirectories" ];
|
||||
before = [ ];
|
||||
data = ''
|
||||
mkdir -p ${config.home.homeDirectory}/.node-global
|
||||
${pkgs.nodejs}/bin/npm config set prefix ${config.home.homeDirectory}/.node-global
|
||||
'';
|
||||
};
|
||||
};
|
||||
sessionPath = [ "${config.home.homeDirectory}/.node-global/bin" ];
|
||||
};
|
||||
|
||||
|
|
|
@ -89,6 +89,7 @@ in
|
|||
config.machine.isGraphical
|
||||
) then [
|
||||
(nixGL insomnia)
|
||||
(nixGL comma)
|
||||
] else
|
||||
[ ]
|
||||
) ++ (
|
||||
|
|
|
@ -1 +1 @@
|
|||
{ programs.command-not-found = { enable = true; }; }
|
||||
{ programs.command-not-found = { enable = false; }; }
|
||||
|
|
|
@ -18,9 +18,8 @@
|
|||
update-local = "bash $HOME/.dotfiles/install";
|
||||
};
|
||||
initExtra = ''
|
||||
[ -d ~/.npm-global ] || mkdir ~/.npm-global
|
||||
${pkgs.nodejs}/bin/npm config set prefix '~/.npm-global'
|
||||
export PATH=~/.npm-global/bin:$PATH
|
||||
source ${pkgs.nix-index}/etc/profile.d/command-not-found.sh
|
||||
'';
|
||||
plugins = [
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue