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/*/flake.lock
/result*

View File

@ -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

View File

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