Add kitty, obs, and scripts skeleton code

Also refactors some flake.nix code to not use dictionaries
This commit is contained in:
Julia Lange 2024-04-08 23:19:54 -07:00
parent 60abc10092
commit 79ff5f1301
7 changed files with 111 additions and 121 deletions

View file

@ -0,0 +1,10 @@
{ config, pkgs, ... }:
let
select = import ./select.nix { inherit pkgs; };
in
{
home.packages = [
select
];
}