This commit is contained in:
Lukas Wurzinger 2025-01-22 20:36:55 +01:00
parent 114c519193
commit 4b888cac5c
No known key found for this signature in database
3 changed files with 31 additions and 15 deletions

View file

@ -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": {

View file

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

View file

@ -0,0 +1,6 @@
{pkgs, ...}: {
environment.systemPackages = [
pkgs.kubectl
pkgs.awscli
];
}