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