This commit is contained in:
Nio 2026-05-08 10:21:15 +02:00
parent 816b59e502
commit fd90e828b2
2 changed files with 19 additions and 0 deletions

View file

@ -26,6 +26,9 @@
# networking.proxy.default = "http://user:password@proxy:port/"; # networking.proxy.default = "http://user:password@proxy:port/";
# networking.proxy.noProxy = "127.0.0.1,localhost,internal.domain"; # networking.proxy.noProxy = "127.0.0.1,localhost,internal.domain";
# Flake
nix.settings.experimental-features = [ "nix-command" "flakes" ];
# Enable networking # Enable networking
networking.networkmanager.enable = true; networking.networkmanager.enable = true;

16
flake.nix Normal file
View file

@ -0,0 +1,16 @@
{
description = "NixOS Konfiguration";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
};
outputs = { self, nixpkgs, ... }: {
nixosConfigurations.nixos = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [
./configuration.nix
];
};
};
}