user specifics
This commit is contained in:
parent
1b1bd60f4b
commit
eaa2e08f5d
28 changed files with 946 additions and 51 deletions
5
components/nix/lua.nix
Normal file
5
components/nix/lua.nix
Normal file
|
@ -0,0 +1,5 @@
|
|||
{ pkgs, ... }:
|
||||
{
|
||||
environment.systemPackages = with pkgs; [ lua ];
|
||||
}
|
||||
|
4
components/nix/qdirstat.nix
Normal file
4
components/nix/qdirstat.nix
Normal file
|
@ -0,0 +1,4 @@
|
|||
{ pkgs, ... }:
|
||||
{
|
||||
environment.systemPackages = [ pkgs.qdirstat ];
|
||||
}
|
12
components/nix/qflipper.nix
Normal file
12
components/nix/qflipper.nix
Normal file
|
@ -0,0 +1,12 @@
|
|||
{ pkgs, ... }:
|
||||
{
|
||||
hardware.flipperzero.enable = true;
|
||||
environment.systemPackages = with pkgs; [ qFlipper ];
|
||||
|
||||
services.udev.extraRules = ''
|
||||
#Flipper Zero serial port
|
||||
SUBSYSTEMS=="usb", ATTRS{idVendor}=="0483", ATTRS{idProduct}=="5740", ATTRS{manufacturer}=="Flipper Devices Inc.", GROUP="users", TAG+="uaccess"
|
||||
#Flipper Zero DFU
|
||||
SUBSYSTEMS=="usb", ATTRS{idVendor}=="0483", ATTRS{idProduct}=="df11", ATTRS{manufacturer}=="STMicroelectronics", GROUP="users", TAG+="uaccess"
|
||||
'';
|
||||
}
|
7
components/nix/rust-repl.nix
Normal file
7
components/nix/rust-repl.nix
Normal file
|
@ -0,0 +1,7 @@
|
|||
{ pkgs, ... }:
|
||||
{
|
||||
environment.systemPackages = with pkgs; [ evcxr rustc ];
|
||||
environment.shellAliases = {
|
||||
rust = "evcxr";
|
||||
};
|
||||
}
|
6
components/nix/uhk-agent.nix
Normal file
6
components/nix/uhk-agent.nix
Normal file
|
@ -0,0 +1,6 @@
|
|||
{ pkgs, ... }:
|
||||
{
|
||||
environment.systemPackages = with pkgs; [ uhk-agent uhk-udev-rules ];
|
||||
|
||||
services.udev.packages = [ pkgs.uhk-udev-rules ];
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue