From 7df97750b776f26469e4d6997aaf56153db8f358 Mon Sep 17 00:00:00 2001 From: reo101 Date: Wed, 26 Jul 2023 10:30:02 +0300 Subject: [PATCH] fix(cheetah)!: hostname propagation `hostname` parameter clashes with the `hostname` package Hardcode (for now) `hostname` value --- machines/nix-on-droid/aarch64-linux/cheetah/home.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/machines/nix-on-droid/aarch64-linux/cheetah/home.nix b/machines/nix-on-droid/aarch64-linux/cheetah/home.nix index b08518e..3e4e61e 100644 --- a/machines/nix-on-droid/aarch64-linux/cheetah/home.nix +++ b/machines/nix-on-droid/aarch64-linux/cheetah/home.nix @@ -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"; };