Quick commit 2024-01-05T18:42:21+01:00

This commit is contained in:
Geoffrey Frogeye 2024-01-05 18:42:21 +01:00
parent 3477528dd5
commit c954f0df5f
9 changed files with 98 additions and 16 deletions

22
flake.nix Normal file
View file

@ -0,0 +1,22 @@
{
description = "Configs";
inputs = {
nixpkgs.url = github:NixOS/nixpkgs/nixos-23.11;
home-manager.url = github:nix-community/home-manager/release-23.11;
home-manager.inputs.nixpkgs.follows = "nixpkgs";
nixos-hardware.url = github:NixOS/nixos-hardware/;
};
outputs = { self, nixpkgs, home-manager, ... }: {
nixosConfigurations.curacao = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [
./curacao/os.nix
# TODO Doesn't work with extensions, as they're out of trees
home-manager.nixosModules.home-manager
];
};
};
}