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
@ -56,8 +56,9 @@
duf
# Passwords
pass
passExtensions.pass-otp
(pass.withExtensions (extensions: with extensions; [
pass-otp
]))
# Dhall
# dhall
@ -102,7 +103,7 @@
reo101.shell = {
enable = true;
username = "reo101";
inherit hostname;
hostname = "cheetah";
direnv = true;
zoxide = true;
};
@ -116,7 +117,6 @@
programs.git = {
enable = true;
userName = "reo101";
# userName = "Pavel Atanasov";
userEmail = "pavel.atanasov2001@gmail.com";
};