Fix on module parts

This commit is contained in:
2026-01-24 17:20:49 +01:00
parent 02082e2dd8
commit d72b3b7911
2 changed files with 25 additions and 25 deletions
+21 -21
View File
@@ -11,29 +11,29 @@
home-manager.inputs.nixpkgs.follows = "nixpkgs"; home-manager.inputs.nixpkgs.follows = "nixpkgs";
}; };
outputs = { outputs =
self, {
nixpkgs, nixpkgs,
home-manager, ...
... }@inputs:
} @ inputs: let let
systems = ["x86_64-linux"]; systems = [ "x86_64-linux" ];
forAllSystems = nixpkgs.lib.genAttrs systems; forAllSystems = nixpkgs.lib.genAttrs systems;
in { in
{
packages = forAllSystems (system: import ./pkgs nixpkgs.legacyPackages.${system});
overlays = import ./overlays { inherit inputs; };
packages = forAllSystems (system: import ./pkgs nixpkgs.legacyPackages.${system}); apps = import ./modules/apps;
overlays = import ./overlays {inherit inputs;}; nixos = import ./modules/nixos;
home-manager = import ./modules/home;
nixos = import ./modules/nixos; nixosConfigurations = {
home = import ./modules/home; nixos = nixpkgs.lib.nixosSystem {
apps = import ./modules/apps; specialArgs = { inherit inputs; };
modules = [ ./nixos/configuration.nix ];
nixosConfigurations = { };
nixos = nixpkgs.lib.nixosSystem {
specialArgs = {inherit inputs;};
modules = [./nixos/configuration.nix];
}; };
};
}; };
} }
+4 -4
View File
@@ -53,10 +53,10 @@
time.timeZone = "Europe/Brussels"; time.timeZone = "Europe/Brussels";
# System services # System services
within.boot.systemd = true; within.boot.systemd.enable = true;
within.boot.plymouth = true; within.boot.plymouth.enable = true;
within.graphics.nvidia.base = true; within.graphics.nvidia.base.enable = true;
within.audio.pipewire = true; within.audio.pipewire.enable = true;
within.networks.dns.enable = true; within.networks.dns.enable = true;
within.networks.manager.enable = true; within.networks.manager.enable = true;