añade disco duro a config
This commit is contained in:
parent
e7346d8f51
commit
325e5f47c5
|
@ -29,6 +29,13 @@ in {
|
||||||
fsType = "vfat";
|
fsType = "vfat";
|
||||||
options = ["umask=027"];
|
options = ["umask=027"];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
"/extern" = {
|
||||||
|
device = "/dev/disk/by-uuid/7d8d3ec9-b456-4e2a-9396-551dcaf7705b";
|
||||||
|
fsType = "btrfs";
|
||||||
|
options = [ "noatime" "compress=zstd" ];
|
||||||
|
};
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
|
hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
|
||||||
|
|
|
@ -78,11 +78,11 @@
|
||||||
},
|
},
|
||||||
"unstable": {
|
"unstable": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1667667542,
|
"lastModified": 1669424363,
|
||||||
"narHash": "sha256-TNWIBYDRb7iLD3VG00cv6V6ECtbLof8LXenNBTOizy4=",
|
"narHash": "sha256-YxkDhOivh4s+VtOvizdOmrbaRbI0SVkTH6sCs9ZZYJc=",
|
||||||
"owner": "nixos",
|
"owner": "nixos",
|
||||||
"repo": "nixpkgs",
|
"repo": "nixpkgs",
|
||||||
"rev": "a07494f6886d384f32243b3a2f9b4baeba1bd30b",
|
"rev": "5bb01fc84459d6d2ea14b17f75b5cd99b7f2fac6",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
|
|
@ -33,6 +33,9 @@
|
||||||
|
|
||||||
overlay = self: super: {
|
overlay = self: super: {
|
||||||
local = packages super;
|
local = packages super;
|
||||||
|
unstable = import unstable {
|
||||||
|
inherit(super) config system;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -3,12 +3,13 @@
|
||||||
static = true;
|
static = true;
|
||||||
|
|
||||||
packages = with pkgs; [
|
packages = with pkgs; [
|
||||||
(octave.withPackages (packages: with packages; [
|
(pkgs.unstable.octave.withPackages (packages: with packages; [
|
||||||
symbolic
|
symbolic
|
||||||
|
signal
|
||||||
]))
|
]))
|
||||||
pipenv
|
|
||||||
(python39.withPackages (packages: with packages; [
|
(python39.withPackages (packages: with packages; [
|
||||||
numpy
|
numpy
|
||||||
|
pipenv
|
||||||
scipy
|
scipy
|
||||||
sympy
|
sympy
|
||||||
matplotlib
|
matplotlib
|
||||||
|
|
Loading…
Reference in a new issue