24 lines
No EOL
510 B
Nix
24 lines
No EOL
510 B
Nix
{
|
|
description = "NixOS flake";
|
|
|
|
inputs = {
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-24.11";
|
|
ghostty = {
|
|
url = "github:ghostty-org/ghostty";
|
|
};
|
|
};
|
|
|
|
outputs = { self, nixpkgs, ghostty, ... }@inputs: {
|
|
nixosConfigurations.limgrave = nixpkgs.lib.nixosSystem {
|
|
system = "x86_64-linux";
|
|
modules = [
|
|
./configuration.nix
|
|
{
|
|
environment.systemPackages = [
|
|
ghostty.packages.x86_64-linux.default
|
|
];
|
|
}
|
|
];
|
|
};
|
|
};
|
|
} |