From 4b888cac5cb376534d983337c30128b014d3873c Mon Sep 17 00:00:00 2001 From: Lukas Wurzinger Date: Wed, 22 Jan 2025 20:36:55 +0100 Subject: [PATCH] stuff --- flake.lock | 27 ++++++++++++--------------- hosts/headful/work/hosts.nix | 13 +++++++++++++ hosts/headful/work/kubectl.nix | 6 ++++++ 3 files changed, 31 insertions(+), 15 deletions(-) create mode 100644 hosts/headful/work/hosts.nix create mode 100644 hosts/headful/work/kubectl.nix diff --git a/flake.lock b/flake.lock index cbb4bac..9c10f68 100644 --- a/flake.lock +++ b/flake.lock @@ -80,11 +80,11 @@ "nixpkgs": "nixpkgs_4" }, "locked": { - "lastModified": 1737028622, - "narHash": "sha256-O1QDc/KWWVf9BgWDoa7WKZa2cDMh5mNMb6BMNMxq2Q4=", + "lastModified": 1737540480, + "narHash": "sha256-ss/Ug6me2wd5hiNP4v8FIYF4emdEZtV4w/CQ4590qS8=", "owner": "cachix", "repo": "devenv", - "rev": "4e5b00134bf03f16af6b25b80abb38c598cfe239", + "rev": "5cd6c94c7d6edf5dbf1c579de3c9db8fbd515a5f", "type": "github" }, "original": { @@ -186,17 +186,14 @@ "nixpkgs": [ "devenv", "nixpkgs" - ], - "nixpkgs-stable": [ - "devenv" ] }, "locked": { - "lastModified": 1730302582, - "narHash": "sha256-W1MIJpADXQCgosJZT8qBYLRuZls2KSiKdpnTVdKBuvU=", + "lastModified": 1737301351, + "narHash": "sha256-2UNmLCKORvdBRhPGI8Vx0b6l7M8/QBey/nHLIxOl4jE=", "owner": "cachix", "repo": "git-hooks.nix", - "rev": "af8a16fe5c264f5e9e18bcee2859b40a656876cf", + "rev": "15a87cedeb67e3dbc8d2f7b9831990dffcf4e69f", "type": "github" }, "original": { @@ -229,11 +226,11 @@ }, "hardware": { "locked": { - "lastModified": 1736978406, - "narHash": "sha256-oMr3PVIQ8XPDI8/x6BHxsWEPBRU98Pam6KGVwUh8MPk=", + "lastModified": 1737359802, + "narHash": "sha256-utplyRM6pqnN940gfaLFBb9oUCSzkan86IvmkhsVlN8=", "owner": "NixOS", "repo": "nixos-hardware", - "rev": "b678606690027913f3434dea3864e712b862dde5", + "rev": "61c79181e77ef774ab0468b28a24bc2647d498d6", "type": "github" }, "original": { @@ -390,11 +387,11 @@ }, "nixpkgs_5": { "locked": { - "lastModified": 1737062831, - "narHash": "sha256-Tbk1MZbtV2s5aG+iM99U8FqwxU/YNArMcWAv6clcsBc=", + "lastModified": 1737469691, + "narHash": "sha256-nmKOgAU48S41dTPIXAq0AHZSehWUn6ZPrUKijHAMmIk=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "5df43628fdf08d642be8ba5b3625a6c70731c19c", + "rev": "9e4d5190a9482a1fb9d18adf0bdb83c6e506eaab", "type": "github" }, "original": { diff --git a/hosts/headful/work/hosts.nix b/hosts/headful/work/hosts.nix new file mode 100644 index 0000000..248a77b --- /dev/null +++ b/hosts/headful/work/hosts.nix @@ -0,0 +1,13 @@ +{ + networking.hosts = { + "127.0.0.1" = [ + "agan.local" + "es.agan.local" + "fr.agan.local" + "de.agan.local" + "it.agan.local" + "de.rent.agan.local" + "nl.agan.local" + ]; + }; +} diff --git a/hosts/headful/work/kubectl.nix b/hosts/headful/work/kubectl.nix new file mode 100644 index 0000000..a3937a4 --- /dev/null +++ b/hosts/headful/work/kubectl.nix @@ -0,0 +1,6 @@ +{pkgs, ...}: { + environment.systemPackages = [ + pkgs.kubectl + pkgs.awscli + ]; +}