mirror of
https://codeberg.org/privacy1st/nix-git
synced 2024-11-21 22:03:19 +01:00
refactor: merge into one file
This commit is contained in:
parent
00008ec704
commit
f613899e68
@ -14,7 +14,6 @@
|
||||
./home-manager.nix
|
||||
../../modules/base.nix
|
||||
../../modules/programs.nix
|
||||
../../modules/git.nix
|
||||
../../modules/print-and-scan.nix
|
||||
../../modules/fde-ssh-unlock.nix
|
||||
../../modules/nextcloud-integration.nix
|
||||
|
@ -14,7 +14,6 @@
|
||||
./home-manager.nix
|
||||
../../modules/base.nix
|
||||
../../modules/programs.nix
|
||||
../../modules/git.nix
|
||||
../../modules/print-and-scan.nix
|
||||
../../modules/fde-ssh-unlock.nix
|
||||
../../modules/nextcloud-integration.nix
|
||||
|
@ -1,9 +1,13 @@
|
||||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
home-manager.users.yoda = { osConfig, config, pkgs, ... }: {
|
||||
users.users.yoda = {
|
||||
packages = with pkgs; [
|
||||
git
|
||||
];
|
||||
};
|
||||
|
||||
# Git config using Home Manager modules
|
||||
home-manager.users.yoda = { osConfig, config, pkgs, ... }: {
|
||||
programs.git = {
|
||||
enable = true;
|
||||
userName = "Daniel Langbein";
|
||||
@ -12,6 +16,5 @@
|
||||
#st = "status";
|
||||
};
|
||||
};
|
||||
|
||||
};
|
||||
}
|
||||
|
@ -1,9 +0,0 @@
|
||||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
users.users.yoda = {
|
||||
packages = with pkgs; [
|
||||
git
|
||||
];
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user