aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZhongheng Liu <z.liu@outlook.com.gr>2024-12-06 22:06:34 +0200
committerZhongheng Liu <z.liu@outlook.com.gr>2024-12-06 22:06:34 +0200
commit32e62e90f3146e5b4b101ea8d8ab0440e9b14c36 (patch)
tree9b5bb58391f01f96d91d24a08defec5001fd19df
parent05e141db88b9c30a3c486e8a66fea1b13cfa48b1 (diff)
downloadnixos-configuration-32e62e90f3146e5b4b101ea8d8ab0440e9b14c36.tar.gz
nixos-configuration-32e62e90f3146e5b4b101ea8d8ab0440e9b14c36.tar.bz2
nixos-configuration-32e62e90f3146e5b4b101ea8d8ab0440e9b14c36.zip
feat: some changes
blender: added CUDA support documentation: enabled development (kernel) documentation
-rw-r--r--home-manager/stvnliu/stylix.nix2
-rw-r--r--nixos/configuration.nix13
2 files changed, 13 insertions, 2 deletions
diff --git a/home-manager/stvnliu/stylix.nix b/home-manager/stvnliu/stylix.nix
index 13ff9e2..1fe0dff 100644
--- a/home-manager/stvnliu/stylix.nix
+++ b/home-manager/stvnliu/stylix.nix
@@ -3,7 +3,7 @@
config,
...
}: let
- globalOpacity = 1.0;
+ globalOpacity = 0.75;
in {
stylix = {
enable = true;
diff --git a/nixos/configuration.nix b/nixos/configuration.nix
index 6d6fe6f..49eac2b 100644
--- a/nixos/configuration.nix
+++ b/nixos/configuration.nix
@@ -22,6 +22,7 @@
GDK_SCALE = config.displayScale;
FLAKE = config.myConfigLocation;
MANPAGER = "nvim +Man!";
+ NVD_BACKEND = "direct";
# GTK_IM_MODULE = lib.mkForce "";
};
services.pcscd.enable = true;
@@ -104,14 +105,24 @@
kernelPackages = pkgs.linuxPackages_zen;
supportedFilesystems = ["ntfs"];
};
+ documentation = {
+ enable = true;
+ dev.enable = true;
+ doc.enable = true;
+ man.enable = true;
+ };
security.polkit.enable = true;
environment.systemPackages = with pkgs; [
+ man-pages-posix
+ man-pages
(pass-wayland.withExtensions (exts: [exts.pass-otp exts.pass-import]))
gparted
zed-editor
libsForQt5.qt5.qtquickcontrols2
libsForQt5.qt5.qtgraphicaleffects
- blender
+ (blender.override {
+ cudaSupport = true;
+ })
trash-cli
#inputs.hyprswitch.packages.x86_64-linux.default
];