feat: add initial rpi4 config
This commit is contained in:
parent
10a370ceac
commit
a1806d8094
4 changed files with 112 additions and 0 deletions
32
home/felschr-rpi4.nix
Normal file
32
home/felschr-rpi4.nix
Normal file
|
@ -0,0 +1,32 @@
|
|||
{ 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;
|
||||
|
||||
programs.git.defaultProfile = "private";
|
||||
|
||||
xdg.configFile."nixpkgs/config.nix".text = ''
|
||||
{
|
||||
allowUnfree = true;
|
||||
}
|
||||
'';
|
||||
|
||||
home.stateVersion = "20.09";
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue