fix(cheetah)!: hostname propagation
`hostname` parameter clashes with the `hostname` package Hardcode (for now) `hostname` value
This commit is contained in:
parent
20e7547b0c
commit
7df97750b7
1 changed files with 5 additions and 5 deletions
|
@ -1,4 +1,4 @@
|
||||||
{ inputs, outputs, hostname, lib, pkgs, config, ... }:
|
{ inputs, outputs, lib, pkgs, config, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
# Home Manager needs a bit of information about you and the
|
# Home Manager needs a bit of information about you and the
|
||||||
|
@ -56,8 +56,9 @@
|
||||||
duf
|
duf
|
||||||
|
|
||||||
# Passwords
|
# Passwords
|
||||||
pass
|
(pass.withExtensions (extensions: with extensions; [
|
||||||
passExtensions.pass-otp
|
pass-otp
|
||||||
|
]))
|
||||||
|
|
||||||
# Dhall
|
# Dhall
|
||||||
# dhall
|
# dhall
|
||||||
|
@ -102,7 +103,7 @@
|
||||||
reo101.shell = {
|
reo101.shell = {
|
||||||
enable = true;
|
enable = true;
|
||||||
username = "reo101";
|
username = "reo101";
|
||||||
inherit hostname;
|
hostname = "cheetah";
|
||||||
direnv = true;
|
direnv = true;
|
||||||
zoxide = true;
|
zoxide = true;
|
||||||
};
|
};
|
||||||
|
@ -116,7 +117,6 @@
|
||||||
programs.git = {
|
programs.git = {
|
||||||
enable = true;
|
enable = true;
|
||||||
userName = "reo101";
|
userName = "reo101";
|
||||||
# userName = "Pavel Atanasov";
|
|
||||||
userEmail = "pavel.atanasov2001@gmail.com";
|
userEmail = "pavel.atanasov2001@gmail.com";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue