mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-06-16 10:05:13 -05:00
feat: init
This commit is contained in:
commit
96c6f790fc
804 changed files with 33411 additions and 0 deletions
11
modules/home/gui/apps/tools/bitwarden/default.nix
Executable file
11
modules/home/gui/apps/tools/bitwarden/default.nix
Executable file
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
{
|
||||
home.packages = builtins.attrValues {
|
||||
inherit (pkgs)
|
||||
bitwarden
|
||||
;
|
||||
};
|
||||
}
|
11
modules/home/gui/apps/tools/celeste/default.nix
Executable file
11
modules/home/gui/apps/tools/celeste/default.nix
Executable file
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
{
|
||||
home.packages = builtins.attrValues {
|
||||
inherit (pkgs)
|
||||
celeste
|
||||
;
|
||||
};
|
||||
}
|
11
modules/home/gui/apps/tools/default.nix
Executable file
11
modules/home/gui/apps/tools/default.nix
Executable file
|
@ -0,0 +1,11 @@
|
|||
let
|
||||
importList =
|
||||
let
|
||||
content = builtins.readDir ./.;
|
||||
dirContent = builtins.filter (n: content.${n} == "directory") (builtins.attrNames content);
|
||||
in
|
||||
map (name: ./. + "/${name}") dirContent;
|
||||
in
|
||||
{
|
||||
imports = importList;
|
||||
}
|
11
modules/home/gui/apps/tools/deskreen/default.nix
Executable file
11
modules/home/gui/apps/tools/deskreen/default.nix
Executable file
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
{
|
||||
home.packages = builtins.attrValues {
|
||||
inherit (pkgs)
|
||||
deskreen
|
||||
;
|
||||
};
|
||||
}
|
11
modules/home/gui/apps/tools/dolphin/default.nix
Executable file
11
modules/home/gui/apps/tools/dolphin/default.nix
Executable file
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
{
|
||||
home.packages = builtins.attrValues {
|
||||
inherit (pkgs.kdePackages)
|
||||
dolphin
|
||||
;
|
||||
};
|
||||
}
|
8
modules/home/gui/apps/tools/droidCam/default.nix
Executable file
8
modules/home/gui/apps/tools/droidCam/default.nix
Executable file
|
@ -0,0 +1,8 @@
|
|||
{ pkgs, ... }:
|
||||
{
|
||||
home.packages = builtins.attrValues {
|
||||
inherit (pkgs)
|
||||
droidcam
|
||||
;
|
||||
};
|
||||
}
|
11
modules/home/gui/apps/tools/emote/default.nix
Executable file
11
modules/home/gui/apps/tools/emote/default.nix
Executable file
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
{
|
||||
home.packages = builtins.attrValues {
|
||||
inherit (pkgs)
|
||||
emote
|
||||
;
|
||||
};
|
||||
}
|
35
modules/home/gui/apps/tools/flameshot/default.nix
Executable file
35
modules/home/gui/apps/tools/flameshot/default.nix
Executable file
|
@ -0,0 +1,35 @@
|
|||
{ pkgs, ... }:
|
||||
|
||||
let
|
||||
flameshotGrim = pkgs.flameshot.overrideAttrs (oldAttrs: {
|
||||
src = pkgs.fetchFromGitHub {
|
||||
owner = "flameshot-org";
|
||||
repo = "flameshot";
|
||||
rev = "3d21e4967b68e9ce80fb2238857aa1bf12c7b905";
|
||||
sha256 = "sha256-OLRtF/yjHDN+sIbgilBZ6sBZ3FO6K533kFC1L2peugc=";
|
||||
};
|
||||
cmakeFlags = [
|
||||
"-DUSE_WAYLAND_CLIPBOARD=1"
|
||||
"-DUSE_WAYLAND_GRIM=1"
|
||||
];
|
||||
buildInputs = oldAttrs.buildInputs ++ [ pkgs.libsForQt5.kguiaddons ];
|
||||
});
|
||||
in
|
||||
{
|
||||
services.flameshot = {
|
||||
enable = true;
|
||||
package = flameshotGrim;
|
||||
settings = {
|
||||
General = {
|
||||
disabledTrayIcon = false;
|
||||
showStartupLaunchMessage = false;
|
||||
# disabledGrimWarning = false;
|
||||
};
|
||||
};
|
||||
};
|
||||
home.packages = builtins.attrValues {
|
||||
inherit (pkgs)
|
||||
# flameshot
|
||||
;
|
||||
};
|
||||
}
|
11
modules/home/gui/apps/tools/gnomeCalculator/default.nix
Executable file
11
modules/home/gui/apps/tools/gnomeCalculator/default.nix
Executable file
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
{
|
||||
home.packages = builtins.attrValues {
|
||||
inherit (pkgs)
|
||||
gnome-calculator
|
||||
;
|
||||
};
|
||||
}
|
11
modules/home/gui/apps/tools/ledger/default.nix
Executable file
11
modules/home/gui/apps/tools/ledger/default.nix
Executable file
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
{
|
||||
home.packages = builtins.attrValues {
|
||||
inherit (pkgs)
|
||||
ledger-live-desktop
|
||||
;
|
||||
};
|
||||
}
|
13
modules/home/gui/apps/tools/mullvad/default.nix
Executable file
13
modules/home/gui/apps/tools/mullvad/default.nix
Executable file
|
@ -0,0 +1,13 @@
|
|||
{
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
{
|
||||
home.packages = builtins.attrValues {
|
||||
inherit (pkgs)
|
||||
# mullvad
|
||||
mullvad-closest
|
||||
mullvad-vpn
|
||||
;
|
||||
};
|
||||
}
|
12
modules/home/gui/apps/tools/openRgb/default.nix
Executable file
12
modules/home/gui/apps/tools/openRgb/default.nix
Executable file
|
@ -0,0 +1,12 @@
|
|||
{
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
{
|
||||
home.packages = builtins.attrValues {
|
||||
inherit (pkgs)
|
||||
openrgb
|
||||
;
|
||||
|
||||
};
|
||||
}
|
12
modules/home/gui/apps/tools/openTablet/default.nix
Executable file
12
modules/home/gui/apps/tools/openTablet/default.nix
Executable file
|
@ -0,0 +1,12 @@
|
|||
{
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
{
|
||||
home.packages = builtins.attrValues {
|
||||
inherit (pkgs)
|
||||
opentabletdriver
|
||||
;
|
||||
|
||||
};
|
||||
}
|
11
modules/home/gui/apps/tools/polychromatic/default.nix
Executable file
11
modules/home/gui/apps/tools/polychromatic/default.nix
Executable file
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
{
|
||||
home.packages = builtins.attrValues {
|
||||
inherit (pkgs)
|
||||
polychromatic
|
||||
;
|
||||
};
|
||||
}
|
12
modules/home/gui/apps/tools/scrcpy/default.nix
Executable file
12
modules/home/gui/apps/tools/scrcpy/default.nix
Executable file
|
@ -0,0 +1,12 @@
|
|||
{
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
{
|
||||
home.packages = builtins.attrValues {
|
||||
inherit (pkgs)
|
||||
scrcpy
|
||||
qtscrcpy
|
||||
;
|
||||
};
|
||||
}
|
11
modules/home/gui/apps/tools/synologyDrive/default.nix
Executable file
11
modules/home/gui/apps/tools/synologyDrive/default.nix
Executable file
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
{
|
||||
home.packages = builtins.attrValues {
|
||||
inherit (pkgs)
|
||||
synology-drive-client
|
||||
;
|
||||
};
|
||||
}
|
11
modules/home/gui/apps/tools/systemMonitor/default.nix
Executable file
11
modules/home/gui/apps/tools/systemMonitor/default.nix
Executable file
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
{
|
||||
home.packages = builtins.attrValues {
|
||||
inherit (pkgs)
|
||||
gnome-system-monitor
|
||||
;
|
||||
};
|
||||
}
|
11
modules/home/gui/apps/tools/usbImager/default.nix
Executable file
11
modules/home/gui/apps/tools/usbImager/default.nix
Executable file
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
{
|
||||
home.packages = builtins.attrValues {
|
||||
inherit (pkgs)
|
||||
usbimager
|
||||
;
|
||||
};
|
||||
}
|
11
modules/home/gui/apps/tools/virtManager/default.nix
Executable file
11
modules/home/gui/apps/tools/virtManager/default.nix
Executable file
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
{
|
||||
home.packages = builtins.attrValues {
|
||||
inherit (pkgs)
|
||||
virt-manager
|
||||
;
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue