chore: convert system to use a flake

This commit is contained in:
Khaïs COLIN 2024-08-22 17:18:45 +00:00
parent d69c19a94c
commit c2e4e7f2a3
2 changed files with 41 additions and 0 deletions

14
flake.nix Normal file
View file

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