Compare commits
8 Commits
5fca31d1ee
...
fa9414149d
| Author | SHA1 | Date | |
|---|---|---|---|
|
fa9414149d
|
|||
|
20a83ab018
|
|||
|
1652c11c12
|
|||
|
b905fc39ea
|
|||
|
3c3caa6750
|
|||
|
4d752e0ab4
|
|||
|
141207707c
|
|||
|
9cb759f56e
|
@@ -1,13 +0,0 @@
|
||||
{
|
||||
appimageTools,
|
||||
fetchurl,
|
||||
}:
|
||||
appimageTools.wrapType2 rec {
|
||||
pname = "handy";
|
||||
version = "0.7.6";
|
||||
src = fetchurl {
|
||||
url = "https://github.com/cjpais/Handy/releases/download/v${version}/Handy_${version}_amd64.AppImage";
|
||||
hash = "sha256-UZNt3lfKo6dBRWK1YD03HmcZsx/Zu2J3eD5VdTw+poU=";
|
||||
};
|
||||
extraPkgs = pkgs: [pkgs.wtype];
|
||||
}
|
||||
@@ -2,8 +2,7 @@
|
||||
lib,
|
||||
config,
|
||||
...
|
||||
}:
|
||||
with lib; let
|
||||
}: with lib; let
|
||||
cfg = config.mySystem.hardware.fingerprint;
|
||||
in {
|
||||
options.mySystem.hardware.fingerprint.enable = mkEnableOption "Enable fingerprint reader";
|
||||
|
||||
@@ -2,19 +2,21 @@
|
||||
pkgs,
|
||||
config,
|
||||
...
|
||||
}: let
|
||||
}:
|
||||
let
|
||||
inherit (config.home) gpuType;
|
||||
in {
|
||||
in
|
||||
{
|
||||
programs.btop = {
|
||||
enable = true;
|
||||
package =
|
||||
if gpuType != null
|
||||
then
|
||||
if gpuType != null then
|
||||
pkgs.btop.override {
|
||||
rocmSupport = gpuType == "amd";
|
||||
cudaSupport = gpuType == "nvidia";
|
||||
}
|
||||
else pkgs.btop;
|
||||
else
|
||||
pkgs.btop;
|
||||
settings = {
|
||||
color_theme = "${pkgs.btop}/share/btop/themes/nord.theme";
|
||||
cpu_bottom = false;
|
||||
|
||||
@@ -6,9 +6,6 @@
|
||||
}:
|
||||
with lib; let
|
||||
inherit (pkgs.stdenv.hostPlatform) system;
|
||||
handy = pkgs.callPackage ../../packages/handy.nix {};
|
||||
pumo-system-info = inputs.pumo-system-info.packages.${system}.default;
|
||||
zen = inputs.zen-browser.packages.${system}.default;
|
||||
in {
|
||||
programs.bun.enable = true;
|
||||
home.packages = with pkgs; [
|
||||
@@ -43,15 +40,14 @@ in {
|
||||
# Misc
|
||||
bitwarden-desktop
|
||||
gplates
|
||||
handy
|
||||
libnotify
|
||||
nextcloud-client
|
||||
onlyoffice-desktopeditors
|
||||
pumo-system-info
|
||||
scrcpy
|
||||
syncthing
|
||||
watchmate
|
||||
zen
|
||||
inputs.zen-browser.packages.${system}.default
|
||||
inputs.pumo-system-info.packages.${system}.default
|
||||
|
||||
# Games
|
||||
atlauncher
|
||||
|
||||
@@ -57,11 +57,6 @@
|
||||
desc = "Gimp";
|
||||
cmd = "${pkgs.gimp}/bin/gimp";
|
||||
}
|
||||
{
|
||||
key = "h";
|
||||
desc = "Handy";
|
||||
cmd = "pkill -USR2 -n handy";
|
||||
}
|
||||
{
|
||||
key = "n";
|
||||
desc = "Nemo";
|
||||
|
||||
Reference in New Issue
Block a user