20 lines
312 B
Nix
20 lines
312 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
../../modules/home-manager.nix
|
|
../../modules/git.nix
|
|
../../modules/zsh.nix
|
|
];
|
|
|
|
home.packages = with pkgs; [
|
|
neofetch
|
|
pfetch
|
|
fortune
|
|
];
|
|
|
|
programs.zsh.shellAliases = {
|
|
code = "/mnt/c/Program\\ Files/Microsoft\\ VS\\ Code/Code.exe";
|
|
};
|
|
|
|
} |