This commit is contained in:
2025-12-07 19:04:23 +03:00
parent 978060c5ef
commit 8c848be9e2
7 changed files with 187 additions and 33 deletions
-18
View File
@@ -1,18 +0,0 @@
{
description = "NixOS configuration for my personal setup";
inputs = { };
outputs = { self, nixpkgs, ... }:
let systems = [ "x86_64-linux" ];
in {
nixosConfigurations = lib.genAttrs systems (system:
let pkgs = nixpkgs.legacyPackages.${system};
in nixpkgs.lib.nixosSystem {
inherit system;
modules = [ ./nixos/configuration.nix ];
specialArgs = { inherit pkgs; };
});
};
}