fmt: reformatted using nixpkgs-fmt prettifier mpd: created configuration hypr: add window rules commons: add usingMusicPlayerDaemon variable
22 lines
352 B
Nix
22 lines
352 B
Nix
{ lib
|
|
, pkgs
|
|
, config
|
|
, ...
|
|
}: {
|
|
imports = [
|
|
#./vscode.nix
|
|
#./intellij.nix
|
|
];
|
|
programs.nixvim = import ./nixvim;
|
|
# dependencies for nixvim configuration
|
|
home.packages = with pkgs; [ ripgrep fd ];
|
|
programs.helix = {
|
|
enable = true;
|
|
};
|
|
/*
|
|
programs.vscode = {
|
|
enable = true;
|
|
package = pkgs.vscode.fhs;
|
|
};
|
|
*/
|
|
}
|