diff --git a/flake.lock b/flake.lock index ba13d55..cc975d7 100644 --- a/flake.lock +++ b/flake.lock @@ -266,42 +266,6 @@ "type": "github" } }, - "nixlib": { - "locked": { - "lastModified": 1736643958, - "narHash": "sha256-tmpqTSWVRJVhpvfSN9KXBvKEXplrwKnSZNAoNPf/S/s=", - "owner": "nix-community", - "repo": "nixpkgs.lib", - "rev": "1418bc28a52126761c02dd3d89b2d8ca0f521181", - "type": "github" - }, - "original": { - "owner": "nix-community", - "repo": "nixpkgs.lib", - "type": "github" - } - }, - "nixos-generators": { - "inputs": { - "nixlib": "nixlib", - "nixpkgs": [ - "nixpkgs" - ] - }, - "locked": { - "lastModified": 1764234087, - "narHash": "sha256-NHF7QWa0ZPT8hsJrvijREW3+nifmF2rTXgS2v0tpcEA=", - "owner": "nix-community", - "repo": "nixos-generators", - "rev": "032a1878682fafe829edfcf5fdfad635a2efe748", - "type": "github" - }, - "original": { - "owner": "nix-community", - "repo": "nixos-generators", - "type": "github" - } - }, "nixpkgs": { "locked": { "lastModified": 1732981179, @@ -395,7 +359,6 @@ "disko": "disko", "home-manager": "home-manager", "lazyvim-nixvim": "lazyvim-nixvim", - "nixos-generators": "nixos-generators", "nixpkgs": "nixpkgs_2" } }, diff --git a/hosts/default.nix b/hosts/default.nix index 6e333a8..7a824ed 100644 --- a/hosts/default.nix +++ b/hosts/default.nix @@ -8,7 +8,6 @@ let commonModules = [ ../boot.nix - ../net.nix ../sw.nix ../users home-manager.nixosModules.home-manager diff --git a/net.nix b/net.nix index b72c84f..cf3dd50 100644 --- a/net.nix +++ b/net.nix @@ -2,5 +2,4 @@ { # Enable networking - networking.networkmanager.enable = true; } diff --git a/sw.nix b/sw.nix index df97d2c..10f26ce 100644 --- a/sw.nix +++ b/sw.nix @@ -8,6 +8,9 @@ # Enable CUPS to print documents. services.printing.enable = true; + # Enable networking + networking.networkmanager.enable = true; + # Enable sound with pipewire. services.pulseaudio.enable = false; security.rtkit.enable = true;