Ghostty
This commit is contained in:
parent
b04731056d
commit
e2a62161a7
3 changed files with 15 additions and 0 deletions
5
README.md
Normal file
5
README.md
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
# My NixOS Config
|
||||||
|
|
||||||
|
## MUST DO:
|
||||||
|
Run the following before trying this config:
|
||||||
|
```sudo nix-channel --add https://nixos.org/channels/nixos-unstable nixos-unstable```
|
|
@ -7,6 +7,7 @@
|
||||||
./apps.nix
|
./apps.nix
|
||||||
./dev.nix
|
./dev.nix
|
||||||
./mounts.nix
|
./mounts.nix
|
||||||
|
./unstable.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
# Bootloader.
|
# Bootloader.
|
||||||
|
|
9
unstable.nix
Normal file
9
unstable.nix
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
{ config, pkgs, ...}:
|
||||||
|
let
|
||||||
|
baseconfig = { allowUnfree = true; };
|
||||||
|
unstable = import <nixos-unstable> { config = baseconfig; };
|
||||||
|
in {
|
||||||
|
environment.systemPackages = with pkgs; [
|
||||||
|
unstable.ghostty
|
||||||
|
];
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue