diff options
| author | Fuwn <[email protected]> | 2024-10-03 02:35:16 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-10-03 02:35:16 -0700 |
| commit | 97bbd863c5e6102e36ffdd36a9aecd2882485106 (patch) | |
| tree | 676fcd635699fa4e84c6d067ae9ed2b0eb3cae09 /home/ebisu/core/education | |
| parent | hosts: use common wording instead of default (diff) | |
| download | nixos-config-97bbd863c5e6102e36ffdd36a9aecd2882485106.tar.xz nixos-config-97bbd863c5e6102e36ffdd36a9aecd2882485106.zip | |
home: moves some modules to core
Diffstat (limited to 'home/ebisu/core/education')
| -rw-r--r-- | home/ebisu/core/education/calculator.nix | 8 | ||||
| -rw-r--r-- | home/ebisu/core/education/default.nix | 9 |
2 files changed, 17 insertions, 0 deletions
diff --git a/home/ebisu/core/education/calculator.nix b/home/ebisu/core/education/calculator.nix new file mode 100644 index 0000000..1022e18 --- /dev/null +++ b/home/ebisu/core/education/calculator.nix @@ -0,0 +1,8 @@ +{ pkgs, ... }: +{ + home.packages = with pkgs; [ + gavin-bc + qalculate-gtk + programmer-calculator + ]; +} diff --git a/home/ebisu/core/education/default.nix b/home/ebisu/core/education/default.nix new file mode 100644 index 0000000..f9f54cc --- /dev/null +++ b/home/ebisu/core/education/default.nix @@ -0,0 +1,9 @@ +{ pkgs, ... }: +{ + imports = [ ./calculator.nix ]; + + home.packages = with pkgs; [ + anki-bin + obsidian + ]; +} |