Added dioxus

This commit is contained in:
xeovalyte 2024-05-18 11:27:09 +02:00
parent 66b56b5b4e
commit d6b29cc63c
No known key found for this signature in database
4 changed files with 17 additions and 1 deletions

View File

@ -4,6 +4,7 @@
imports = [ # Include the results of the hardware scan. imports = [ # Include the results of the hardware scan.
./hardware-configuration.nix ./hardware-configuration.nix
../../modules/system/desktop/hyprland.nix ../../modules/system/desktop/hyprland.nix
../../modules/system/desktop/noisetorch.nix
#../../modules/system/desktop/plasma.nix #../../modules/system/desktop/plasma.nix
../../modules/system/desktop/nvidia.nix ../../modules/system/desktop/nvidia.nix
../../modules/system/programs/sunshine.nix ../../modules/system/programs/sunshine.nix

View File

@ -5,9 +5,10 @@
../../modules/home/desktop/hyprland ../../modules/home/desktop/hyprland
# ../../modules/home/programs/barrier.nix # ../../modules/home/programs/barrier.nix
../../modules/home/programs/common.nix ../../modules/home/programs/common.nix
../../modules/home/programs/develop.nix
../../modules/home/programs/firefox.nix ../../modules/home/programs/firefox.nix
../../modules/home/programs/kitty.nix ../../modules/home/programs/kitty.nix
# ../../modules/home/programs/modrinth.nix ../../modules/home/programs/modrinth.nix
../../modules/home/programs/neovim ../../modules/home/programs/neovim
../../modules/home/programs/git.nix ../../modules/home/programs/git.nix
../../modules/home/programs/ssh.nix ../../modules/home/programs/ssh.nix
@ -28,6 +29,8 @@
unstable.arduino-ide unstable.arduino-ide
unstable.prismlauncher unstable.prismlauncher
blender blender
unstable.surrealist
]; ];
home.sessionVariables = { home.sessionVariables = {

View File

@ -0,0 +1,7 @@
{ pkgs, ... }:
{
home.packages = with pkgs; [
unstable.dioxus-cli
];
}

View File

@ -0,0 +1,5 @@
{ ... }:
{
programs.noisetorch.enable = true;
}