updates
This commit is contained in:
parent
f2767b0596
commit
a3283256b4
9 changed files with 148 additions and 272 deletions
|
@ -25,6 +25,11 @@
|
|||
|
||||
security.pki.certificateFiles = [ ./domain.crt ];
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
# (ollama.override {acceleration = "rocm"; })
|
||||
];
|
||||
services.flatpak.enable = true;
|
||||
|
||||
# Bootloader.
|
||||
boot = {
|
||||
bootspec.enable = true;
|
||||
|
|
|
@ -17,6 +17,7 @@
|
|||
home.packages = with pkgs; [
|
||||
libreoffice-fresh
|
||||
jetbrains.rust-rover
|
||||
jetbrains.idea-ultimate
|
||||
eduvpn-client
|
||||
localsend
|
||||
obsidian
|
||||
|
|
|
@ -4,28 +4,25 @@
|
|||
# * Smart Phone Sensing
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
environment.systemPackages = with pkgs; [
|
||||
android-studio
|
||||
docker-compose
|
||||
bridge-utils
|
||||
nettools
|
||||
wget
|
||||
];
|
||||
environment.systemPackages = with pkgs; [ android-studio ];
|
||||
|
||||
programs.wireshark.enable = true;
|
||||
programs.wireshark.package = pkgs.wireshark;
|
||||
programs.wireshark = {
|
||||
enable = true;
|
||||
package = pkgs.wireshark;
|
||||
};
|
||||
|
||||
virtualisation.lxc.enable = false;
|
||||
virtualisation.lxd.enable = false;
|
||||
|
||||
virtualisation.podman.enable = false;
|
||||
virtualisation.docker.enable = true;
|
||||
virtualisation.docker.storageDriver = "btrfs";
|
||||
virtualisation = {
|
||||
podman.enable = true;
|
||||
docker = {
|
||||
enable = false;
|
||||
storageDriver = "btrfs";
|
||||
};
|
||||
};
|
||||
|
||||
users.extraUsers.vivian.extraGroups = [
|
||||
"wireshark"
|
||||
"docker"
|
||||
"lxd"
|
||||
# "wireshark"
|
||||
# "docker"
|
||||
# "lxd"
|
||||
];
|
||||
|
||||
programs.nix-ld = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue