fixes packages not avialable
This commit is contained in:
parent
602685e775
commit
825a1abe57
3 changed files with 11 additions and 10 deletions
|
|
@ -10,14 +10,6 @@
|
|||
GOPATH = "$HOME/go";
|
||||
};
|
||||
|
||||
home.packages = with pkgs; [
|
||||
yt-dlp
|
||||
fnm
|
||||
devenv
|
||||
zellij
|
||||
zellij-switch
|
||||
];
|
||||
|
||||
xdg.enable = true;
|
||||
|
||||
imports = [
|
||||
|
|
|
|||
|
|
@ -32,7 +32,11 @@
|
|||
];
|
||||
|
||||
# System Packages
|
||||
environment.systemPackages = lib.mkAfter (with pkgs; [ ]);
|
||||
environment.systemPackages = lib.mkAfter (with pkgs; [
|
||||
yt-dlp
|
||||
fnm
|
||||
devenv
|
||||
]);
|
||||
|
||||
# Install additional homebrew apps
|
||||
homebrew.masApps = {
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
{ config, ... }:
|
||||
{ config, pkgs, ... }:
|
||||
{
|
||||
xdg.configFile."zellij/config.kdl" = {
|
||||
source = config.lib.file.mkOutOfStoreSymlink "${config.home.homeDirectory}/dev/nix-config/modules/zellij/config.kdl";
|
||||
|
|
@ -12,4 +12,9 @@
|
|||
enable = true;
|
||||
enableFishIntegration = true;
|
||||
};
|
||||
|
||||
environment.systemPackages = lib.mkAfter (with pkgs; [
|
||||
zellij
|
||||
zellij-switch
|
||||
]);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue