another commit
This commit is contained in:
parent
57fbf2917f
commit
90db3ab0ad
@ -42,6 +42,7 @@ with types; {
|
|||||||
video = "amd";
|
video = "amd";
|
||||||
ram = 16;
|
ram = 16;
|
||||||
isShared = false;
|
isShared = false;
|
||||||
|
enableDocker = true;
|
||||||
hostName = "ataraxia-pc";
|
hostName = "ataraxia-pc";
|
||||||
};
|
};
|
||||||
PackardBell-Laptop = {
|
PackardBell-Laptop = {
|
||||||
@ -57,6 +58,7 @@ with types; {
|
|||||||
video = "nvidia";
|
video = "nvidia";
|
||||||
ram = 6;
|
ram = 6;
|
||||||
isShared = true;
|
isShared = true;
|
||||||
|
enableDocker = false;
|
||||||
hostName = null;
|
hostName = null;
|
||||||
};
|
};
|
||||||
Dell-Laptop = {
|
Dell-Laptop = {
|
||||||
@ -72,6 +74,7 @@ with types; {
|
|||||||
video = "intel";
|
video = "intel";
|
||||||
ram = 8;
|
ram = 8;
|
||||||
isShared = true;
|
isShared = true;
|
||||||
|
enableDocker = true;
|
||||||
hostName = "dell-ataraxia";
|
hostName = "dell-ataraxia";
|
||||||
};
|
};
|
||||||
NixOS-VM = {
|
NixOS-VM = {
|
||||||
@ -87,6 +90,7 @@ with types; {
|
|||||||
video = "virtualbox";
|
video = "virtualbox";
|
||||||
ram = 4;
|
ram = 4;
|
||||||
isShared = false;
|
isShared = false;
|
||||||
|
enableDocker = false;
|
||||||
hostName = null;
|
hostName = null;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
@ -12,17 +12,17 @@
|
|||||||
"5ef5fe07c1f062e4653fce9fe138cc952c20e284ae1ca50babf9089b5cba3a5a";
|
"5ef5fe07c1f062e4653fce9fe138cc952c20e284ae1ca50babf9089b5cba3a5a";
|
||||||
networks.AlukardAP = {
|
networks.AlukardAP = {
|
||||||
pskRaw = "b8adc07cf1a9c7a7a5946c2645283b27ab91a8af4c065e5f9cde03ed1815811c";
|
pskRaw = "b8adc07cf1a9c7a7a5946c2645283b27ab91a8af4c065e5f9cde03ed1815811c";
|
||||||
priority= 3;
|
priority = 2;
|
||||||
};
|
};
|
||||||
networks.SladkiySon.pskRaw =
|
networks.SladkiySon.pskRaw =
|
||||||
"86b1c8c60d3e99145bfe90e0af9bf552540d34606bb0d00b314f5b5960e46496";
|
"86b1c8c60d3e99145bfe90e0af9bf552540d34606bb0d00b314f5b5960e46496";
|
||||||
networks.AlukardAP_5GHz = {
|
networks.AlukardAP_5GHz = {
|
||||||
pskRaw = "fb8a89b5602442be083d2a1e67db55c6ff05a306551bcd08a79b6c6bbc97fc30";
|
pskRaw = "fb8a89b5602442be083d2a1e67db55c6ff05a306551bcd08a79b6c6bbc97fc30";
|
||||||
priority= 2;
|
priority = 1;
|
||||||
};
|
};
|
||||||
networks.POAS = {
|
networks.POAS = {
|
||||||
pskRaw = "6cfdb04f3e2d4279a4651608c9c73277708c67f7f1435b61228ecf00841e5155";
|
pskRaw = "6cfdb04f3e2d4279a4651608c9c73277708c67f7f1435b61228ecf00841e5155";
|
||||||
priority = 1;
|
priority = 3;
|
||||||
};
|
};
|
||||||
# interfaces = ["wlan0"];
|
# interfaces = ["wlan0"];
|
||||||
userControlled.enable = true;
|
userControlled.enable = true;
|
||||||
|
@ -18,9 +18,16 @@
|
|||||||
# When the extension is already available in the default extensions set.
|
# When the extension is already available in the default extensions set.
|
||||||
vscodeExtensions = with super.vscode-extensions; [
|
vscodeExtensions = with super.vscode-extensions; [
|
||||||
bbenoist.Nix
|
bbenoist.Nix
|
||||||
ms-python.python
|
] ++ super.vscode-utils.extensionsFromVscodeMarketplace [
|
||||||
|
{
|
||||||
|
name = "vscode-remote-extensionpack";
|
||||||
|
publisher = "ms-vscode-remote";
|
||||||
|
version = "0.17.0";
|
||||||
|
sha256 = "Dlf9RzNefPilnbezh13C+WAsTJ7GqSCMEhnWhER+u5s=";
|
||||||
|
}
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
})
|
})
|
||||||
];
|
];
|
||||||
nixpkgs.config = {
|
nixpkgs.config = {
|
||||||
|
@ -85,7 +85,7 @@
|
|||||||
|
|
||||||
services.gnome3.gnome-keyring.enable = true;
|
services.gnome3.gnome-keyring.enable = true;
|
||||||
|
|
||||||
# virtualisation.docker.enable = config.deviceSpecific.isHost;
|
virtualisation.docker.enable = config.devices.${config.device}.enableDocker;
|
||||||
# virtualisation.virtualbox.host = lib.mkIf config.deviceSpecific.isHost {
|
# virtualisation.virtualbox.host = lib.mkIf config.deviceSpecific.isHost {
|
||||||
# enable = true;
|
# enable = true;
|
||||||
# # enableHardening = false;
|
# # enableHardening = false;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user