Merge branch 'master' of git.2li.ch:Nebucatnetzer/nixos

This commit is contained in:
Andreas Zweili 2022-12-13 21:02:32 +01:00
commit 609e96d47d
1 changed files with 5 additions and 1 deletions

View File

@ -1,4 +1,4 @@
{ custom }: { ... }:
{ custom }: { pkgs, ... }:
{
imports = [
(import "${custom.inputs.self}/home-manager/common" { inherit custom; })
@ -10,6 +10,10 @@
"${custom.inputs.self}/home-manager/software/vim"
];
home.packages = with pkgs; [
xclip
];
programs.git.userEmail = "andreas@zweili.ch";
programs.bash = {