mirror of
https://github.com/anotherhadi/nixy.git
synced 2026-07-06 16:12:33 +02:00
@@ -49,6 +49,9 @@ in {
|
|||||||
'';
|
'';
|
||||||
|
|
||||||
shellAliases = {
|
shellAliases = {
|
||||||
|
s = "superfile";
|
||||||
|
spf = "superfile";
|
||||||
|
|
||||||
vim = "nvim";
|
vim = "nvim";
|
||||||
vi = "nvim";
|
vi = "nvim";
|
||||||
v = "nvim";
|
v = "nvim";
|
||||||
|
|||||||
@@ -1,8 +1,34 @@
|
|||||||
{
|
{config, ...}: {
|
||||||
|
xdg.userDirs = {
|
||||||
|
enable = true;
|
||||||
|
createDirectories = true;
|
||||||
|
desktop = "${config.home.homeDirectory}/Desktop";
|
||||||
|
download = "${config.home.homeDirectory}/Downloads";
|
||||||
|
pictures = "${config.home.homeDirectory}/Pictures";
|
||||||
|
music = null;
|
||||||
|
documents = null;
|
||||||
|
videos = null;
|
||||||
|
templates = null;
|
||||||
|
publicShare = null;
|
||||||
|
};
|
||||||
|
|
||||||
programs.superfile = {
|
programs.superfile = {
|
||||||
enable = true;
|
enable = true;
|
||||||
firstUseCheck = false;
|
firstUseCheck = false;
|
||||||
pinnedFolders = [];
|
pinnedFolders = [
|
||||||
|
{
|
||||||
|
name = "dev";
|
||||||
|
location = "/home/hadrien/dev";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
name = "nixos";
|
||||||
|
location = "/home/hadrien/.config/nixos";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
name = "trash";
|
||||||
|
location = "/home/hadrien/.local/share/Trash/files";
|
||||||
|
}
|
||||||
|
];
|
||||||
settings = {
|
settings = {
|
||||||
transparent_background = true;
|
transparent_background = true;
|
||||||
ignore_missing_fields = true;
|
ignore_missing_fields = true;
|
||||||
|
|||||||
Reference in New Issue
Block a user