Add a way in flake to experiment with unstable

This commit is contained in:
Bun 2025-04-18 02:58:46 -04:00
parent 6ead3afd36
commit 99df29e876
3 changed files with 22 additions and 8 deletions

View file

@ -5,6 +5,7 @@
./disko
./filesystems
./hardware
./network
./users
../../modules/system
];

View file

@ -0,0 +1,13 @@
{ ... }:
{
networking = {
interfaces."wlp1s0".ipv4.addresses = [{
address = "10.2.0.101";
prefixLength = 8;
}];
defaultGateway = {
address = "10.1.0.1";
interface = "wlp1s0";
};
};
}