ma tools: enable init-host, rambox
This commit is contained in:
parent
cec7e3124d
commit
8d3c776baf
@ -10,6 +10,7 @@
|
|||||||
./games.nix
|
./games.nix
|
||||||
./media.nix
|
./media.nix
|
||||||
./mobility.nix
|
./mobility.nix
|
||||||
|
./pcmanfm-extra.nix
|
||||||
./scanner-tools.nix
|
./scanner-tools.nix
|
||||||
./sec.nix
|
./sec.nix
|
||||||
./sec-gui.nix
|
./sec-gui.nix
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
chromium
|
chromium
|
||||||
feh
|
feh
|
||||||
clipit
|
clipit
|
||||||
firefox
|
# firefox
|
||||||
keepassx
|
keepassx
|
||||||
pcmanfm
|
pcmanfm
|
||||||
evince
|
evince
|
||||||
|
@ -2,10 +2,15 @@
|
|||||||
|
|
||||||
{
|
{
|
||||||
users.users.makefu.packages = with pkgs;[
|
users.users.makefu.packages = with pkgs;[
|
||||||
python3
|
(python3.withPackages(ps: [
|
||||||
python3Packages.pyserial
|
ps.python-language-server
|
||||||
|
# the following plugins are optional, they provide type checking, import sorting and code formatting
|
||||||
|
ps.pyls-mypy ps.pyls-isort ps.pyls-black
|
||||||
|
ps.virtualenv
|
||||||
|
]))
|
||||||
picocom
|
picocom
|
||||||
python3Packages.virtualenv
|
python3.pkgs.pyserial
|
||||||
|
python3.pkgs.virtualenv
|
||||||
# embedded
|
# embedded
|
||||||
gi
|
gi
|
||||||
flashrom
|
flashrom
|
||||||
@ -26,6 +31,6 @@
|
|||||||
nix-review
|
nix-review
|
||||||
# git-related
|
# git-related
|
||||||
tig
|
tig
|
||||||
init-host
|
(pkgs.callPackage ./init-host {})
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
@ -14,5 +14,6 @@
|
|||||||
saleae-logic
|
saleae-logic
|
||||||
gitAndTools.gitFull
|
gitAndTools.gitFull
|
||||||
signal-desktop
|
signal-desktop
|
||||||
|
rambox
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
11
makefu/2configs/tools/pcmanfm-extra.nix
Normal file
11
makefu/2configs/tools/pcmanfm-extra.nix
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
{ pkgs, ... }:
|
||||||
|
{
|
||||||
|
users.users.makefu.packages = with pkgs; [
|
||||||
|
pcmanfm
|
||||||
|
lxqt.lxqt-policykit
|
||||||
|
shared_mime_info
|
||||||
|
lxmenu-data
|
||||||
|
];
|
||||||
|
environment.variables.GIO_EXTRA_MODULES = [ "${pkgs.gvfs}/lib/gio/modules" ];
|
||||||
|
services.gnome3.gvfs.enable = true;
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user