Compare commits

..

No commits in common. "92b0c1fc43aa0ec841a757c85a10dcfc187c713b" and "772ea6b0497bb5c0b376dd7a4d7ef08191e108ea" have entirely different histories.

3 changed files with 15 additions and 22 deletions

12
flake.lock generated
View file

@ -299,11 +299,11 @@
]
},
"locked": {
"lastModified": 1747978958,
"narHash": "sha256-pQQnbxWpY3IiZqgelXHIe/OAE/Yv4NSQq7fch7M6nXQ=",
"lastModified": 1747565775,
"narHash": "sha256-B6jmKHUEX1jxxcdoYHl7RVaeohtAVup8o3nuVkzkloA=",
"owner": "nix-community",
"repo": "home-manager",
"rev": "7419250703fd5eb50e99bdfb07a86671939103ea",
"rev": "97118a310eb8e13bc1b9b12d67267e55b7bee6c8",
"type": "github"
},
"original": {
@ -502,11 +502,11 @@
},
"nixpkgs_2": {
"locked": {
"lastModified": 1747744144,
"narHash": "sha256-W7lqHp0qZiENCDwUZ5EX/lNhxjMdNapFnbErcbnP11Q=",
"lastModified": 1747542820,
"narHash": "sha256-GaOZntlJ6gPPbbkTLjbd8BMWaDYafhuuYRNrxCGnPJw=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "2795c506fe8fb7b03c36ccb51f75b6df0ab2553f",
"rev": "292fa7d4f6519c074f0a50394dbbe69859bb6043",
"type": "github"
},
"original": {

View file

@ -27,26 +27,20 @@
virt-viewer
podman-compose
];
systemd.nspawn =
let
systemd.nspawn = {
n1 = {
networkConfig = {
Private = true;
VirtualEthernet = true;
Bridge = "br0";
};
in
{
n1 = {
inherit networkConfig;
};
n2 = {
inherit networkConfig;
};
evpn1 = {
inherit networkConfig;
};
evpn2 = {
inherit networkConfig;
};
n2 = {
networkConfig = {
Private = true;
VirtualEthernet = true;
Bridge = "br0";
};
};
};
}

View file

@ -30,7 +30,6 @@ in
atuin
nmap
killall
magic-wormhole
];
users.defaultUserShell = pkgs.zsh;
programs.fzf = {