From bcb50d3b870257012a7bc1536b668ddd78e4d719 Mon Sep 17 00:00:00 2001 From: L-Nafaryus Date: Tue, 19 Dec 2023 11:50:00 +0500 Subject: [PATCH] update: nixosConfigurations: astora --- .gitignore | 1 + nixosConfigurations/astora/default.nix | 8 ++++++++ nixosConfigurations/astora/users.nix | 5 +++++ 3 files changed, 14 insertions(+) diff --git a/.gitignore b/.gitignore index eb2668a..d5fe23a 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ templates/*/result* templates/*/flake.lock +/result* diff --git a/nixosConfigurations/astora/default.nix b/nixosConfigurations/astora/default.nix index 2db1328..88c4740 100644 --- a/nixosConfigurations/astora/default.nix +++ b/nixosConfigurations/astora/default.nix @@ -25,6 +25,13 @@ nixpkgs = { hostPlatform = lib.mkDefault "x86_64-linux"; config.allowUnfree = true; + config.cudaSupport = false; + + overlays = [ + (final: prev: { + blender = prev.blender.override { cudaSupport = true; }; + }) + ]; }; # Services @@ -84,6 +91,7 @@ fishPlugins.grc fishPlugins.hydro + nnn fzf grc diff --git a/nixosConfigurations/astora/users.nix b/nixosConfigurations/astora/users.nix index 3115b1e..f6b1562 100644 --- a/nixosConfigurations/astora/users.nix +++ b/nixosConfigurations/astora/users.nix @@ -23,6 +23,7 @@ home.packages = with pkgs; [ gnupg git + nnn gparted @@ -39,6 +40,10 @@ wireplumber gamemode + + gimp + inkscape + blender ]; xdg.enable = true;