1
0
Fork 0
nixconf/unstable.nix

10 lines
206 B
Nix
Raw Normal View History

2024-12-31 21:59:24 -07:00
{ config, pkgs, ...}:
let
baseconfig = { allowUnfree = true; };
unstable = import <nixos-unstable> { config = baseconfig; };
in {
environment.systemPackages = with pkgs; [
unstable.ghostty
];
}