Compare commits
3 commits
6cde9353ab
...
0ad475e6bf
Author | SHA1 | Date | |
---|---|---|---|
|
0ad475e6bf | ||
|
925551ec26 | ||
|
efe37836bd |
|
@ -25,7 +25,11 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
outputs =
|
outputs =
|
||||||
{ home-manager, nixpkgs, ... }@inputs:
|
{
|
||||||
|
home-manager,
|
||||||
|
nixpkgs,
|
||||||
|
...
|
||||||
|
}@inputs:
|
||||||
let
|
let
|
||||||
system = "x86_64-linux";
|
system = "x86_64-linux";
|
||||||
pkgs = nixpkgs.legacyPackages.${system};
|
pkgs = nixpkgs.legacyPackages.${system};
|
||||||
|
|
|
@ -6,9 +6,21 @@
|
||||||
}:
|
}:
|
||||||
|
|
||||||
let
|
let
|
||||||
inherit (lib) types mkOption;
|
inherit (lib)
|
||||||
ollamaPackage =
|
types
|
||||||
if config.programs.neovim.ollama.type == "amd" then pkgs.ollama-rocm else pkgs.ollama-cuda;
|
mkOption
|
||||||
|
mkIf
|
||||||
|
mkEnableOption
|
||||||
|
;
|
||||||
|
|
||||||
|
ollamaPackage = mkIf config.programs.neovim.ollama.enable (
|
||||||
|
if config.programs.neovim.ollama.type == "amd" then
|
||||||
|
pkgs.ollama-rocm
|
||||||
|
else if config.programs.neovim.ollama.type == "nvidia" then
|
||||||
|
pkgs.ollama-cuda
|
||||||
|
else
|
||||||
|
pkgs.ollama
|
||||||
|
);
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
options.programs.neovim = {
|
options.programs.neovim = {
|
||||||
|
@ -28,7 +40,9 @@ in
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
ollama.type = mkOption {
|
ollama = {
|
||||||
|
enable = mkEnableOption "enable";
|
||||||
|
type = mkOption {
|
||||||
default = "amd";
|
default = "amd";
|
||||||
description = "The type of ollama package to install, AMD GPU accelerated or NVIDIA GPU accelerated.";
|
description = "The type of ollama package to install, AMD GPU accelerated or NVIDIA GPU accelerated.";
|
||||||
example = "amd";
|
example = "amd";
|
||||||
|
@ -38,10 +52,10 @@ in
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
};
|
||||||
|
|
||||||
config = {
|
config = {
|
||||||
programs.neovim = {
|
programs.neovim = {
|
||||||
enable = true;
|
|
||||||
withNodeJs = true;
|
withNodeJs = true;
|
||||||
withPython3 = true;
|
withPython3 = true;
|
||||||
|
|
||||||
|
|
|
@ -42,10 +42,10 @@
|
||||||
## Start wallpaper daemon and set one.
|
## Start wallpaper daemon and set one.
|
||||||
#
|
#
|
||||||
OUTPUT_1="DP-2"
|
OUTPUT_1="DP-2"
|
||||||
IMAGE_1="/mnt/internal/personal/wallpapers/wallhaven-vqlvm8.jpg"
|
IMAGE_1="/mnt/internal/personal/wallpapers/edited/1440-bicycle.jpg"
|
||||||
|
|
||||||
OUTPUT_2="DP-3"
|
OUTPUT_2="DP-3"
|
||||||
IMAGE_2="/mnt/internal/personal/wallpapers/wallhaven-2yl6px.jpg"
|
IMAGE_2="/mnt/internal/personal/wallpapers/edited/1080-bycicle.jpg"
|
||||||
|
|
||||||
function load_wallpapers() {
|
function load_wallpapers() {
|
||||||
swww img -t any --transition-bezier 0.0,0.0,1.0,1.0 --transition-duration .8 --transition-step 255 --transition-fps 60 -o $OUTPUT_1 $IMAGE_1;
|
swww img -t any --transition-bezier 0.0,0.0,1.0,1.0 --transition-duration .8 --transition-step 255 --transition-fps 60 -o $OUTPUT_1 $IMAGE_1;
|
||||||
|
@ -117,6 +117,10 @@
|
||||||
# MODULES #
|
# MODULES #
|
||||||
#
|
#
|
||||||
|
|
||||||
|
programs.neovim = {
|
||||||
|
enable = true;
|
||||||
|
};
|
||||||
|
|
||||||
modules.hyprland = {
|
modules.hyprland = {
|
||||||
# Enable scripts
|
# Enable scripts
|
||||||
scripts = {
|
scripts = {
|
||||||
|
|
|
@ -106,8 +106,13 @@
|
||||||
# MODULES #
|
# MODULES #
|
||||||
#
|
#
|
||||||
|
|
||||||
|
# Enable neovim
|
||||||
|
programs.neovim = {
|
||||||
|
enable = true;
|
||||||
|
|
||||||
# Set the hostname for nixd in neovim
|
# Set the hostname for nixd in neovim
|
||||||
programs.neovim.nixd.hostname = "wizlap";
|
nixd.hostname = "wizlap";
|
||||||
|
};
|
||||||
|
|
||||||
# Add monitor configuration to hyprland
|
# Add monitor configuration to hyprland
|
||||||
modules.hyprland = {
|
modules.hyprland = {
|
||||||
|
|
Loading…
Reference in a new issue