1
0
Fork 0
This commit is contained in:
Atridad Lahiji 2024-12-31 21:59:24 -07:00
parent b04731056d
commit e2a62161a7
3 changed files with 15 additions and 0 deletions

5
README.md Normal file
View 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```

View file

@ -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
View file

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