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