mirror of
https://codeberg.org/privacy1st/nix-git
synced 2024-11-22 22:09:34 +01:00
34 lines
856 B
Nix
34 lines
856 B
Nix
|
{ config, pkgs, ... }:
|
||
|
let
|
||
|
#home-manager = builtins.fetchTarball "https://github.com/nix-community/home-manager/archive/master.tar.gz";
|
||
|
home-manager = (import ./nix/sources.nix).home-manager;
|
||
|
in
|
||
|
{
|
||
|
imports = [
|
||
|
(import "${home-manager}/nixos")
|
||
|
];
|
||
|
|
||
|
home-manager.users.yoda = {
|
||
|
/* The home.stateVersion option does not have a default and must be set */
|
||
|
home.stateVersion = "23.05";
|
||
|
/* Here goes the rest of your home-manager config, e.g. home.packages = [ pkgs.foo ]; */
|
||
|
|
||
|
# Git config using Home Manager modules
|
||
|
programs.git = {
|
||
|
enable = true;
|
||
|
userName = "Daniel Langbein";
|
||
|
userEmail = "daniel@systemli.org";
|
||
|
aliases = {
|
||
|
st = "status";
|
||
|
};
|
||
|
};
|
||
|
|
||
|
#services.gpg-agent = {
|
||
|
# enable = true;
|
||
|
# enableSshSupport = true;
|
||
|
# defaultCacheTtl = 1800;
|
||
|
#};
|
||
|
|
||
|
};
|
||
|
}
|