blob: 53f05db74c387ce5497d23620484bbd52fe0c628 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#+title: Custom Scripts
Import various scripts useful on my system.
#+begin_src nix
{ config, pkgs, ... }:
{
imports = [
./deploy-website.nix
./launcher.nix
./remove-quarantine.nix
];
}
#+end_src
|