10 lines
206 B
Nix
10 lines
206 B
Nix
|
{ config, pkgs, ...}:
|
||
|
let
|
||
|
baseconfig = { allowUnfree = true; };
|
||
|
unstable = import <nixos-unstable> { config = baseconfig; };
|
||
|
in {
|
||
|
environment.systemPackages = with pkgs; [
|
||
|
unstable.ghostty
|
||
|
];
|
||
|
}
|