Skip to content

Commit 695bd73

Browse files
Merge branch 'Vanderscycle:main' into main
2 parents f747553 + 373140b commit 695bd73

File tree

59 files changed

+1612
-754
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

59 files changed

+1612
-754
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# Dotfiles
22

3-
Under refactoring
3+
Its a mess

nix-darwin/flakes/home-lab/configuration.nix

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,25 @@
2323
./hardware-configuration.nix
2424
];
2525

26+
# networking
27+
# https://nixos.org/manual/nixos/stable/index.html#sec-ipv4
28+
networking = {
29+
defaultGateway = "192.168.2.1";
30+
nameservers = [ "9.9.9.9" ];
31+
interfaces.eth0.ipv4.addresses = [
32+
{
33+
address = "192.168.2.1${meta.index}";
34+
prefixLength = 24;
35+
}
36+
];
37+
};
2638
cron.configSync.enable = true;
2739
cron.dotFile.path = "/home/proxmox/dotFiles";
2840

2941
nix = {
3042
optimise.automatic = true;
3143
settings = {
3244
experimental-features = "nix-command flakes";
33-
substituters = [ "https://hyprland.cachix.org" ];
34-
trusted-public-keys = [ "hyprland.cachix.org-1:a7pgxzMz7+chwVL3/pzj6jIBMioiJM7ypFP8PwtkuGc=" ];
3545
};
3646

3747
gc = {
@@ -165,6 +175,6 @@
165175
# and migrated your data accordingly.
166176
#
167177
# For more information, see `man configuration.nix` or https://nixos.org/manual/nixos/stable/options#opt-system.stateVersion .
168-
system.stateVersion = "23.11"; # Did you read the comment?
178+
system.stateVersion = "25.05"; # Did you read the comment?
169179

170180
}

0 commit comments

Comments
 (0)