forked from shazow/nixfiles
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathhome-dev.nix
More file actions
40 lines (35 loc) · 754 Bytes
/
Copy pathhome-dev.nix
File metadata and controls
40 lines (35 loc) · 754 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{ config, pkgs, ... }:
let unstable = import <unstable> { };
in {
# Let Home Manager install and manage itself.
programs.home-manager.enable = true;
nixpkgs.config.allowUnfree = true;
home.packages = with pkgs; [
vscode
homesick
fzf
meld
unstable.starship
pass
];
imports = [
./config/tmux.conf.nix
./config/git.nix
./config/zsh.nix
./config/starship-dev.toml.nix
];
programs.zsh = {
oh-my-zsh = { theme = "minimal"; };
profileExtra = ''
export PATH=$PATH:$HOME/.npm-prefix/bin
'';
initExtraBeforeCompInit = ''
eval "$(starship init zsh)"
'';
};
services.gpg-agent = {
enable = true;
enableSshSupport = true;
sshKeys = [ "2018_id_rsa" ];
};
}