Fix add programs
This commit is contained in:
parent
15e01a456e
commit
29c94165da
4 changed files with 24 additions and 7 deletions
|
@ -1,7 +1,9 @@
|
|||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
imports = [];
|
||||
imports = [
|
||||
./programs
|
||||
];
|
||||
|
||||
home = {
|
||||
username = "florian";
|
||||
|
|
9
home/programs/default.nix
Normal file
9
home/programs/default.nix
Normal file
|
@ -0,0 +1,9 @@
|
|||
{
|
||||
config,
|
||||
pkgs,
|
||||
...
|
||||
}: {
|
||||
imports = [
|
||||
./git.nix
|
||||
];
|
||||
}
|
12
home/programs/git.nix
Normal file
12
home/programs/git.nix
Normal file
|
@ -0,0 +1,12 @@
|
|||
{
|
||||
pkgs,
|
||||
...
|
||||
}: {
|
||||
home.packages = [];
|
||||
|
||||
programs.git = {
|
||||
enable = true;
|
||||
userName = "Florian RICHER";
|
||||
userEmail = "florian.richer@protonmail.com";
|
||||
};
|
||||
}
|
|
@ -37,12 +37,6 @@
|
|||
git
|
||||
];
|
||||
|
||||
programs.git = {
|
||||
enable = true;
|
||||
userName = "Florian RICHER";
|
||||
userEmail = "florian.richer@protonmail.com";
|
||||
};
|
||||
|
||||
users.users.florian = {
|
||||
isNormalUser = true;
|
||||
description = "florian";
|
||||
|
|
Loading…
Reference in a new issue