fix(cheetah)!: hostname propagation

`hostname` parameter clashes with the `hostname` package
Hardcode (for now) `hostname` value
This commit is contained in:
reo101 2023-07-26 10:30:02 +03:00
parent 20e7547b0c
commit 7df97750b7
Signed by: reo101
GPG key ID: 675AA7EF13964ACB

View file

@ -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";
}; };