From 5124c308a038e7fe4721a39e64a56f30aeeaf397 Mon Sep 17 00:00:00 2001 From: Superredstone Date: Sun, 15 Sep 2024 09:56:38 +0200 Subject: [PATCH] Added weather function to fish --- configuration.nix | 1 - flake.lock | 18 +++++++++--------- home/fish.nix | 3 +++ 3 files changed, 12 insertions(+), 10 deletions(-) diff --git a/configuration.nix b/configuration.nix index cc18324..3bc6887 100644 --- a/configuration.nix +++ b/configuration.nix @@ -87,7 +87,6 @@ gcc git gnumake - home-manager jq python3 ripgrep diff --git a/flake.lock b/flake.lock index 0778617..2980e66 100644 --- a/flake.lock +++ b/flake.lock @@ -191,11 +191,11 @@ ] }, "locked": { - "lastModified": 1725948275, - "narHash": "sha256-4QOPemDQ9VRLQaAdWuvdDBhh+lEUOAnSMHhdr4nS1mk=", + "lastModified": 1726357542, + "narHash": "sha256-p4OrJL2weh0TRtaeu1fmNYP6+TOp/W2qdaIJxxQay4c=", "owner": "nix-community", "repo": "home-manager", - "rev": "e5fa72bad0c6f533e8d558182529ee2acc9454fe", + "rev": "e524c57b1fa55d6ca9d8354c6ce1e538d2a1f47f", "type": "github" }, "original": { @@ -227,11 +227,11 @@ }, "nixpkgs": { "locked": { - "lastModified": 1725634671, - "narHash": "sha256-v3rIhsJBOMLR8e/RNWxr828tB+WywYIoajrZKFM+0Gg=", + "lastModified": 1726062873, + "narHash": "sha256-IiA3jfbR7K/B5+9byVi9BZGWTD4VSbWe8VLpp9B/iYk=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "574d1eac1c200690e27b8eb4e24887f8df7ac27c", + "rev": "4f807e8940284ad7925ebd0a0993d2a1791acb2f", "type": "github" }, "original": { @@ -281,11 +281,11 @@ "systems": "systems" }, "locked": { - "lastModified": 1725290973, - "narHash": "sha256-+jwXF9KI0HfvDgpsoJGvOdfOGGSKOrID1wQB79zjUbo=", + "lastModified": 1726170940, + "narHash": "sha256-sobkRkGBaMX9pD0bwU1iVPWi0WtQvZqlHyl1YtvNDio=", "owner": "danth", "repo": "stylix", - "rev": "ef81ad9e85e60420cc83d4642619c14b57139d33", + "rev": "35233f929629c8eb64e939e35260fc8347f94df9", "type": "github" }, "original": { diff --git a/home/fish.nix b/home/fish.nix index f943ca6..1928574 100644 --- a/home/fish.nix +++ b/home/fish.nix @@ -4,6 +4,9 @@ enable = true; interactiveShellInit = '' set fish_greeting # Disable greeting + function weather + curl "wttr.in/Bolzano?0?Q?" + end ''; }; }