nixos: switch to a flake + change /boot part uuid

This commit is contained in:
Khaïs COLIN 2024-07-28 11:36:51 +02:00
parent 70131093c3
commit b2f226cf49
3 changed files with 39 additions and 1 deletions

11
nixos/flake.nix Normal file
View file

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