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; backups = enabled;
languages = [ languages = [
"misc" "misc"
"python"
"nim" "nim"
"tex"
"node" "node"
"nushell"
"python"
"tex"
"zig" "zig"
]; ];
}; };

View file

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

View file

@ -9,11 +9,12 @@ let
in in
{ {
imports = [ imports = [
./nim.nix
./tex.nix
./misc.nix ./misc.nix
./nim.nix
./node.nix ./node.nix
./nushell.nix
./python.nix ./python.nix
./tex.nix
./zig.nix ./zig.nix
]; ];
options.oizys.languages = mkOption { 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
];
};
}