Compare commits

..

3 commits

Author SHA1 Message Date
59f08c655c
add nufmt too 2024-06-11 10:56:38 -05:00
01b196c9c5
drop cursors? 2024-06-11 09:42:53 -05:00
2d2bd05421
add nushell 2024-06-11 09:27:08 -05:00
4 changed files with 26 additions and 5 deletions

View file

@ -11,10 +11,11 @@
backups = enabled;
languages = [
"misc"
"python"
"nim"
"tex"
"node"
"nushell"
"python"
"tex"
"zig"
];
};

View file

@ -42,7 +42,7 @@ mkOizysModule config "hyprland" {
rofi-wayland
pavucontrol
catppuccin-cursors.mochaDark
# catppuccin-cursors.mochaDark
#hypr ecosystem
hyprlock

View file

@ -9,11 +9,12 @@ let
in
{
imports = [
./nim.nix
./tex.nix
./misc.nix
./nim.nix
./node.nix
./nushell.nix
./python.nix
./tex.nix
./zig.nix
];
options.oizys.languages = mkOption {

View file

@ -0,0 +1,19 @@
{
config,
lib,
pkgs,
...
}:
let
inherit (lib) mkIfIn;
cfg = config.oizys.languages;
in
{
config = mkIfIn "nushell" cfg {
environment.systemPackages = with pkgs; [
nushell
nufmt
nushellPlugins.polars
];
};
}