got manwe'a shell back up and running again
This commit is contained in:
parent
ad816fe171
commit
ce1d40f6a2
6 changed files with 14 additions and 4 deletions
|
@ -2,6 +2,7 @@
|
||||||
{
|
{
|
||||||
user = {
|
user = {
|
||||||
full_name = "Chris Kruining";
|
full_name = "Chris Kruining";
|
||||||
|
email = "chris@kruining.eu";
|
||||||
is_trusted = true;
|
is_trusted = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -2,6 +2,7 @@
|
||||||
{
|
{
|
||||||
user = {
|
user = {
|
||||||
full_name = "Chris Kruining";
|
full_name = "Chris Kruining";
|
||||||
|
email = "chris@kruining.eu";
|
||||||
is_trusted = true;
|
is_trusted = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -23,7 +23,7 @@ in rec
|
||||||
# imports = (mapModulesRec' ../modules/home (file: import file (args // { user = name; })));
|
# imports = (mapModulesRec' ../modules/home (file: import file (args // { user = name; })));
|
||||||
home = {
|
home = {
|
||||||
inherit stateVersion;
|
inherit stateVersion;
|
||||||
sessionPath = [ "$SNEEUWVLOK_BIN" "$XDG_BIN_HOME" "$PATH" ]; # Pretty sure I don't need this.
|
sessionPath = [ "$XDG_BIN_HOME" "$PATH" ]; # Pretty sure I don't need this.
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -33,6 +33,7 @@ in
|
||||||
tmux.enable = true;
|
tmux.enable = true;
|
||||||
yazi.enable = true;
|
yazi.enable = true;
|
||||||
eza.enable = true;
|
eza.enable = true;
|
||||||
|
git.enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
home-manager.users.${user} = {
|
home-manager.users.${user} = {
|
||||||
|
|
|
@ -80,9 +80,9 @@ in
|
||||||
credential.helper = "${pkgs.gitFull}/bin/git-credential-libsecret";
|
credential.helper = "${pkgs.gitFull}/bin/git-credential-libsecret";
|
||||||
|
|
||||||
user = {
|
user = {
|
||||||
name = "Chris Kruining";
|
name = config.modules.${user}.user.full_name;
|
||||||
email = "chris@kruining.eu";
|
email = config.modules.${user}.user.email;
|
||||||
signingKey = readFile "${config.user.home}/.ssh/id_rsa.pub";
|
signingKey = "~/.ssh/id_rsa.pub";
|
||||||
};
|
};
|
||||||
|
|
||||||
gpg.format = "ssh";
|
gpg.format = "ssh";
|
||||||
|
|
|
@ -17,6 +17,13 @@ in
|
||||||
description = "Full name of the user, this is used as the kde plasma display name for example";
|
description = "Full name of the user, this is used as the kde plasma display name for example";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
email = mkOption {
|
||||||
|
type = nullOr str;
|
||||||
|
default = null;
|
||||||
|
example = "name@domain.tld";
|
||||||
|
description = "user's email address";
|
||||||
|
};
|
||||||
|
|
||||||
is_trusted = mkOption {
|
is_trusted = mkOption {
|
||||||
type = bool;
|
type = bool;
|
||||||
default = false;
|
default = false;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue