update: nixosConfigurations: astora
This commit is contained in:
parent
5972a37b36
commit
bcb50d3b87
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,2 +1,3 @@
|
|||||||
templates/*/result*
|
templates/*/result*
|
||||||
templates/*/flake.lock
|
templates/*/flake.lock
|
||||||
|
/result*
|
||||||
|
@ -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
|
||||||
|
|
||||||
|
@ -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;
|
||||||
|
Loading…
Reference in New Issue
Block a user