mirror of
https://github.com/daylinmorgan/oizys.git
synced 2024-12-26 09:20:44 -06:00
Compare commits
3 commits
5f4ab1664e
...
59f08c655c
Author | SHA1 | Date | |
---|---|---|---|
59f08c655c | |||
01b196c9c5 | |||
2d2bd05421 |
4 changed files with 26 additions and 5 deletions
|
@ -11,10 +11,11 @@
|
||||||
backups = enabled;
|
backups = enabled;
|
||||||
languages = [
|
languages = [
|
||||||
"misc"
|
"misc"
|
||||||
"python"
|
|
||||||
"nim"
|
"nim"
|
||||||
"tex"
|
|
||||||
"node"
|
"node"
|
||||||
|
"nushell"
|
||||||
|
"python"
|
||||||
|
"tex"
|
||||||
"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,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 {
|
||||||
|
|
19
modules/languages/nushell.nix
Normal file
19
modules/languages/nushell.nix
Normal 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
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue