sayncthing ig
This commit is contained in:
parent
cef112b672
commit
22a2d35ae8
12 changed files with 283 additions and 15 deletions
|
|
@ -10,5 +10,6 @@
|
|||
./development
|
||||
./terminal
|
||||
./window_manager
|
||||
./syncthing
|
||||
];
|
||||
}
|
||||
|
|
|
|||
20
modules/syncthing/default.nix
Normal file
20
modules/syncthing/default.nix
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
{
|
||||
config,
|
||||
lib,
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
|
||||
{
|
||||
options = {
|
||||
};
|
||||
|
||||
config = {
|
||||
programs = {
|
||||
syncthing = {
|
||||
enable = true;
|
||||
tray.enable = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
26
modules/terminal/toys.nix
Normal file
26
modules/terminal/toys.nix
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
{
|
||||
config,
|
||||
lib,
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
|
||||
{
|
||||
options = {
|
||||
terminal = {
|
||||
toys.enable = lib.mkEnableOption "enable terminal toys";
|
||||
};
|
||||
};
|
||||
|
||||
config = lib.mkIf config.terminal.toys.enable {
|
||||
home.packages = with pkgs; [
|
||||
asciiquarium-transparent
|
||||
cava
|
||||
bunnyfetch
|
||||
nerdfetch
|
||||
fastfetch
|
||||
cmatrix
|
||||
astroterm
|
||||
]
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue