summaryrefslogtreecommitdiff
path: root/nixos
diff options
context:
space:
mode:
authorseraphim <18ycm9tx@anonaddy.me>2026-08-02 01:30:03 +0700
committerseraphim <18ycm9tx@anonaddy.me>2026-08-02 01:30:03 +0700
commita11c417b06c410050181c62d376006d2e7b7efba (patch)
treedd0eb10c2f96e0ab5014632b287f78c223d54c2c /nixos
parentea66121d095c9b4f43b814e320bdfecc6c22df0c (diff)
.
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/features/desktop-apps/default.nix1
-rw-r--r--nixos/modules/features/dev-tools/default.nix6
-rw-r--r--nixos/modules/features/fonts/default.nix4
3 files changed, 10 insertions, 1 deletions
diff --git a/nixos/modules/features/desktop-apps/default.nix b/nixos/modules/features/desktop-apps/default.nix
index 51b8bdd..527a350 100644
--- a/nixos/modules/features/desktop-apps/default.nix
+++ b/nixos/modules/features/desktop-apps/default.nix
@@ -16,6 +16,7 @@
pkgs.vesktop
pkgs.amnezia-vpn
obsidian
+ obs-studio
pkgs.qbittorrent
pkgs.masterpdfeditor
];
diff --git a/nixos/modules/features/dev-tools/default.nix b/nixos/modules/features/dev-tools/default.nix
index fa19d8a..ad10afd 100644
--- a/nixos/modules/features/dev-tools/default.nix
+++ b/nixos/modules/features/dev-tools/default.nix
@@ -14,6 +14,12 @@
python3
rust-analyzer
rustc
+ lua5_4
tree-sitter
+ jetbrains.rust-rover
+ jetbrains.pycharm
];
+ environment.sessionVariables = {
+ RUST_SRC_PATH = "${pkgs.rustPlatform.rustLibSrc}";
+ };
}
diff --git a/nixos/modules/features/fonts/default.nix b/nixos/modules/features/fonts/default.nix
index cecdd8f..322d449 100644
--- a/nixos/modules/features/fonts/default.nix
+++ b/nixos/modules/features/fonts/default.nix
@@ -9,5 +9,7 @@
nerd-fonts.symbols-only
jetbrains-mono
noto-fonts-color-emoji
+ adwaita-fonts
+ cozette
];
-} \ No newline at end of file
+}