Fix on module parts
This commit is contained in:
@@ -11,22 +11,22 @@
|
|||||||
home-manager.inputs.nixpkgs.follows = "nixpkgs";
|
home-manager.inputs.nixpkgs.follows = "nixpkgs";
|
||||||
};
|
};
|
||||||
|
|
||||||
outputs = {
|
outputs =
|
||||||
self,
|
{
|
||||||
nixpkgs,
|
nixpkgs,
|
||||||
home-manager,
|
|
||||||
...
|
...
|
||||||
} @ inputs: let
|
}@inputs:
|
||||||
|
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});
|
packages = forAllSystems (system: import ./pkgs nixpkgs.legacyPackages.${system});
|
||||||
overlays = import ./overlays { inherit inputs; };
|
overlays = import ./overlays { inherit inputs; };
|
||||||
|
|
||||||
nixos = import ./modules/nixos;
|
|
||||||
home = import ./modules/home;
|
|
||||||
apps = import ./modules/apps;
|
apps = import ./modules/apps;
|
||||||
|
nixos = import ./modules/nixos;
|
||||||
|
home-manager = import ./modules/home;
|
||||||
|
|
||||||
nixosConfigurations = {
|
nixosConfigurations = {
|
||||||
nixos = nixpkgs.lib.nixosSystem {
|
nixos = nixpkgs.lib.nixosSystem {
|
||||||
|
|||||||
@@ -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;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user