29 lines
705 B
Nix
29 lines
705 B
Nix
{
|
|
description = "aleidk NixOs Flake";
|
|
|
|
# Inputs
|
|
# https://nixos.org/manual/nix/unstable/command-ref/new-cli/nix3-flake.html#flake-inputs
|
|
|
|
# Add more sources
|
|
# https://nixos-and-flakes.thiscute.world/nixos-with-flakes/nixos-with-flakes-enabled#managing-system-packages-with-flakes
|
|
|
|
inputs = {
|
|
nixpkgs.url = "nixpkgs";
|
|
home-manager = {
|
|
url = "github:nix-community/home-manager/release-23.05";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
};
|
|
|
|
outputs = { self, nixpkgs, ... }@inputs: {
|
|
nixosConfigurations = {
|
|
"nixos" = nixpkgs.lib.nixosSystem {
|
|
system = "x86_64-linux";
|
|
modules = [
|
|
./configuration.nix
|
|
];
|
|
};
|
|
};
|
|
|
|
};
|
|
}
|