update, added assets
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
{ config, lib, pkgs, ... }:
|
||||
{ config, lib, pkgs, inputs, ... }:
|
||||
{
|
||||
imports = [
|
||||
./hardware-configuration.nix
|
||||
@@ -37,19 +37,19 @@
|
||||
services.ollama = {
|
||||
enable = true;
|
||||
acceleration = "rocm";
|
||||
};
|
||||
services.n8n = {
|
||||
enable = true;
|
||||
package = pkgs.unstable.ollama-rocm;
|
||||
};
|
||||
services.open-webui = {
|
||||
enable = true;
|
||||
port = 11111;
|
||||
package = pkgs.unstable.open-webui;
|
||||
};
|
||||
|
||||
services.fprintd.enable = true;
|
||||
|
||||
services.xserver.windowManager.i3.enable = true;
|
||||
services.xserver.resolutions = [ {x = 2560; y = 1600; } ];
|
||||
services.xserver.dpi = lib.mkForce 108;
|
||||
services.desktopManager.gnome.enable = true;
|
||||
services.gnome = {
|
||||
core-apps.enable = false;
|
||||
@@ -63,6 +63,7 @@
|
||||
|
||||
services.flatpak.enable = true;
|
||||
xdg.portal.extraPortals = with pkgs; [
|
||||
xdg-desktop-portal-gtk
|
||||
xdg-desktop-portal-gnome
|
||||
xdg-desktop-portal-xapp
|
||||
kdePackages.xdg-desktop-portal-kde
|
||||
@@ -82,20 +83,26 @@
|
||||
vim
|
||||
tmux
|
||||
saleae-logic-2
|
||||
my-ricing-assets
|
||||
xdg-desktop-portal-gtk
|
||||
xdg-desktop-portal-gnome
|
||||
xdg-desktop-portal-xapp
|
||||
kdePackages.xdg-desktop-portal-kde
|
||||
]) ++ (with pkgs.gnomeExtensions; [
|
||||
kiwi-menu
|
||||
blur-my-shell
|
||||
forge
|
||||
vibe-panel
|
||||
dash-to-dock
|
||||
]);
|
||||
|
||||
environment.variables = {
|
||||
MY_RICING_ASSETS_PATH = "${pkgs.my-ricing-assets}/";
|
||||
};
|
||||
|
||||
nixpkgs.config.allowUnfree = true;
|
||||
|
||||
networking.hostName = "wakugumi-hitoroku";
|
||||
networking.firewall.enable = true;
|
||||
|
||||
system.stateVersion = "25.11";
|
||||
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user