Initial commit
This commit is contained in:
commit
cfcc57a8bd
353 changed files with 18756 additions and 0 deletions
14
module/aspect/software/file-manager/file-sync/syncthing.nix
Normal file
14
module/aspect/software/file-manager/file-sync/syncthing.nix
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
{
|
||||
den.aspects = {
|
||||
syncthing = {
|
||||
nixos =
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
environment.systemPackages = [
|
||||
pkgs.syncthing
|
||||
pkgs.syncthingtray
|
||||
];
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
11
module/aspect/software/file-manager/file-sync/unison.nix
Normal file
11
module/aspect/software/file-manager/file-sync/unison.nix
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
den.aspects = {
|
||||
unison = {
|
||||
homeManager =
|
||||
{ config, pkgs, ... }:
|
||||
{
|
||||
home.packages = [ pkgs.unison ];
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
13
module/aspect/software/file-manager/gui/ark-archiver.nix
Normal file
13
module/aspect/software/file-manager/gui/ark-archiver.nix
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
{
|
||||
den.aspects = {
|
||||
ark-archiver = {
|
||||
homeManager =
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
home.packages = [
|
||||
pkgs.latest.kdePackages.ark
|
||||
];
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
13
module/aspect/software/file-manager/gui/dolphin.nix
Normal file
13
module/aspect/software/file-manager/gui/dolphin.nix
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
{
|
||||
den.aspects = {
|
||||
dolphin = {
|
||||
homeManager =
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
home.packages = [
|
||||
pkgs.latest.kdePackages.dolphin
|
||||
];
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
13
module/aspect/software/file-manager/gui/krusader.nix
Normal file
13
module/aspect/software/file-manager/gui/krusader.nix
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
{
|
||||
den.aspects = {
|
||||
krusader = {
|
||||
homeManager =
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
home.packages = [
|
||||
pkgs.krusader
|
||||
];
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
31
module/aspect/software/file-manager/gui/nemo.nix
Normal file
31
module/aspect/software/file-manager/gui/nemo.nix
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
{
|
||||
den.aspects = {
|
||||
nemo = {
|
||||
homeManager =
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
home.packages = [
|
||||
pkgs.latest.nemo-with-extensions
|
||||
pkgs.latest.nemo-preview
|
||||
pkgs.latest.nemo-seahorse
|
||||
pkgs.latest.nemo-fileroller
|
||||
];
|
||||
gtk.gtk3.extraConfig = {
|
||||
GtkFileChooserBackend = "nemo";
|
||||
};
|
||||
gtk.gtk4.extraConfig = {
|
||||
GtkFileChooserBackend = "nemo";
|
||||
};
|
||||
xdg.desktopEntries = {
|
||||
"nemo" = {
|
||||
name = "Nemo";
|
||||
exec = "nemo %U";
|
||||
terminal = false;
|
||||
categories = [ "System" "FileManager" ];
|
||||
mimeType = [ "inode/directory" ];
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
13
module/aspect/software/file-manager/gui/spacedrive.nix
Normal file
13
module/aspect/software/file-manager/gui/spacedrive.nix
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
{
|
||||
den.aspects = {
|
||||
spacedrive = {
|
||||
homeManager =
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
home.packages = [
|
||||
pkgs.latest.spacedrive
|
||||
];
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
14
module/aspect/software/file-manager/tty/yazi.nix
Normal file
14
module/aspect/software/file-manager/tty/yazi.nix
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
{
|
||||
den.aspects = {
|
||||
yazi = {
|
||||
homeManager =
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
home.packages = [
|
||||
pkgs.latest.yazi
|
||||
pkgs.latest.yaziPlugins.sudo
|
||||
];
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue