Compare commits

..

No commits in common. "59f08c655c43541d0d98def3a80d291b3bc6e7fb" and "5f4ab1664ef2d79fe78c115471305f4fdcad7143" have entirely different histories.

4 changed files with 6 additions and 27 deletions

View file

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

View file

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