mirror of
https://github.com/daylinmorgan/oizys.git
synced 2024-12-25 20:50: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;
|
||||
languages = [
|
||||
"misc"
|
||||
"python"
|
||||
"nim"
|
||||
"tex"
|
||||
"node"
|
||||
"nushell"
|
||||
"python"
|
||||
"tex"
|
||||
"zig"
|
||||
];
|
||||
};
|
||||
|
|
|
@ -42,7 +42,7 @@ mkOizysModule config "hyprland" {
|
|||
rofi-wayland
|
||||
pavucontrol
|
||||
|
||||
catppuccin-cursors.mochaDark
|
||||
# catppuccin-cursors.mochaDark
|
||||
|
||||
#hypr ecosystem
|
||||
hyprlock
|
||||
|
|
|
@ -9,11 +9,12 @@ let
|
|||
in
|
||||
{
|
||||
imports = [
|
||||
./nim.nix
|
||||
./tex.nix
|
||||
./misc.nix
|
||||
./nim.nix
|
||||
./node.nix
|
||||
./nushell.nix
|
||||
./python.nix
|
||||
./tex.nix
|
||||
./zig.nix
|
||||
];
|
||||
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