From 038a090a084ae38270fc91a2c8af876e4f184ad8 Mon Sep 17 00:00:00 2001 From: batvin321 Date: Sun, 16 Jun 2024 18:19:32 -0400 Subject: [PATCH] Update configuration.nix --- configuration.nix | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/configuration.nix b/configuration.nix index 4588e2d..4acb4d5 100644 --- a/configuration.nix +++ b/configuration.nix @@ -27,6 +27,7 @@ in boot.loader.efi.canTouchEfiVariables = true; #boot.loader.efi.efiSysMountPoint = "/boot/efi"; + # appimage support boot.binfmt.registrations.appimage = { interpreter = "${pkgs.appimage-run}/bin/appimage-run"; recognitionType = "magic"; @@ -36,7 +37,7 @@ in }; # boot logo - #boot.plymouth.enable = true; + boot.plymouth.enable = true; # ZRAM zramSwap.enable = true; @@ -49,7 +50,7 @@ in #boot.binfmt.emulatedSystems = [ "aarch64-linux" ]; boot.kernelPackages = pkgs.linuxPackages_xanmod_stable; - boot.extraModulePackages = with config.boot.kernelPackages; [ v4l2loopback evdi ]; + boot.extraModulePackages = with config.boot.kernelPackages; [ v4l2loopback ]; networking.hostName = "vincents-hp"; # Define your hostname. networking.networkmanager.enable = true; @@ -150,9 +151,6 @@ in }; }; - # ollama - services.ollama.enable = true; - # List packages installed in system profile. To search, run: # $ nix search wget environment = { @@ -188,6 +186,7 @@ in # podman podman docker-compose + distrobox # package manager wget # web browser @@ -242,6 +241,9 @@ in # schedualer services.system76-scheduler.enable = true; + # ollama + services.ollama.enable = true; + # Enable the OpenSSH daemon. services.openssh.enable = false;