update: nixosConfigurations: astora

This commit is contained in:
L-Nafaryus 2023-12-19 11:50:00 +05:00
parent 5972a37b36
commit bcb50d3b87
No known key found for this signature in database
GPG Key ID: C76D8DCD2727DBB7
3 changed files with 14 additions and 0 deletions

1
.gitignore vendored
View File

@ -1,2 +1,3 @@
templates/*/result* templates/*/result*
templates/*/flake.lock templates/*/flake.lock
/result*

View File

@ -25,6 +25,13 @@
nixpkgs = { nixpkgs = {
hostPlatform = lib.mkDefault "x86_64-linux"; hostPlatform = lib.mkDefault "x86_64-linux";
config.allowUnfree = true; config.allowUnfree = true;
config.cudaSupport = false;
overlays = [
(final: prev: {
blender = prev.blender.override { cudaSupport = true; };
})
];
}; };
# Services # Services
@ -84,6 +91,7 @@
fishPlugins.grc fishPlugins.grc
fishPlugins.hydro fishPlugins.hydro
nnn
fzf fzf
grc grc

View File

@ -23,6 +23,7 @@
home.packages = with pkgs; [ home.packages = with pkgs; [
gnupg gnupg
git git
nnn
gparted gparted
@ -39,6 +40,10 @@
wireplumber wireplumber
gamemode gamemode
gimp
inkscape
blender
]; ];
xdg.enable = true; xdg.enable = true;