formatting

This commit is contained in:
Moritz Böhme 2021-11-22 11:13:06 +01:00
parent 77dcda448f
commit f2f8decfe4
3 changed files with 12 additions and 22 deletions

View file

@ -1,7 +1,8 @@
{ config, lib, pkgs, inputs, ... }:
let
base = (home: {
{
environment.pathsToLink = [ "/share/zsh" ];
home-manager.users.moritz = {
home.packages = with pkgs; [ du-dust ];
programs = {
zsh = {
@ -35,9 +36,5 @@ let
enableZshIntegration = true;
};
};
});
in
{
environment.pathsToLink = [ "/share/zsh" ];
home-manager.users.moritz = { ... }: (base "/home/moritz");
};
}