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