1
0
Fork 0
nixconf/unstable.nix
2024-12-31 21:59:24 -07:00

9 lines
206 B
Nix

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