mirror of
https://github.com/daylinmorgan/oizys.git
synced 2024-12-27 14:10:45 -06:00
Compare commits
No commits in common. "59f08c655c43541d0d98def3a80d291b3bc6e7fb" and "5f4ab1664ef2d79fe78c115471305f4fdcad7143" have entirely different histories.
59f08c655c
...
5f4ab1664e
4 changed files with 6 additions and 27 deletions
|
@ -11,11 +11,10 @@
|
||||||
backups = enabled;
|
backups = enabled;
|
||||||
languages = [
|
languages = [
|
||||||
"misc"
|
"misc"
|
||||||
"nim"
|
|
||||||
"node"
|
|
||||||
"nushell"
|
|
||||||
"python"
|
"python"
|
||||||
|
"nim"
|
||||||
"tex"
|
"tex"
|
||||||
|
"node"
|
||||||
"zig"
|
"zig"
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -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 {
|
||||||
|
|
|
@ -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
|
|
||||||
];
|
|
||||||
};
|
|
||||||
}
|
|
Loading…
Reference in a new issue