nixos-config/home/felschr-rpi4.nix

38 lines
723 B
Nix
Raw Normal View History

2020-09-27 14:27:25 +02:00
{ config, pkgs, ... }:
{
imports = [
./shell
# ./editors
./git.nix
];
home.packages = with pkgs; [ ncurses ];
services.gpg-agent = {
enable = true;
enableSshSupport = true;
sshKeys = [ "4AE1DDE05F4BB6C8E220501F1336A98E89836D90" ];
defaultCacheTtl = 600;
defaultCacheTtlSsh = 600;
pinentryFlavor = "curses";
};
programs.gpg.enable = true;
2020-11-14 11:18:13 +01:00
home.sessionVariables = with pkgs; { EDITOR = "nvim"; };
2020-10-03 16:13:12 +02:00
programs.neovim.enable = true;
programs.neovim.viAlias = true;
programs.neovim.vimAlias = true;
2020-09-27 14:27:25 +02:00
programs.git.defaultProfile = "private";
xdg.configFile."nixpkgs/config.nix".text = ''
{
allowUnfree = true;
}
'';
2021-06-03 11:46:25 +02:00
home.stateVersion = "21.05";
2020-09-27 14:27:25 +02:00
}