mirror of
https://github.com/Ascyii/nixos.git
synced 2026-01-01 14:54:26 -05:00
Better filemanager
This commit is contained in:
@@ -18,6 +18,31 @@
|
||||
};
|
||||
};
|
||||
|
||||
# Enable and configure the gnome terminal for the nemo file manager
|
||||
programs.gnome-terminal = {
|
||||
enable = true;
|
||||
showMenubar = false;
|
||||
themeVariant = "dark";
|
||||
profile."17ef1520-f08d-403f-b033-d8ccee6b01f9" = {
|
||||
visibleName = "MainHome";
|
||||
transparencyPercent = 60;
|
||||
font = "FiraCode Nerd Font 12"; # Fira is installed on the system by the nixos config
|
||||
default = true;
|
||||
audibleBell = false;
|
||||
cursorBlinkMode = "off";
|
||||
colors = {
|
||||
backgroundColor = "#1d1d1d";
|
||||
cursor = {
|
||||
foreground = "#1d1d1d"; # text inside cursor
|
||||
background = "#ffb86c"; # light orange block
|
||||
};
|
||||
foregroundColor = "#f7f6ec";
|
||||
palette = [ "#343835" "#ce3e60" "#7bb75b" "#e8b32a" "#4c99d3" "#a57fc4" "#389aac" "#f9faf6"
|
||||
"#585a58" "#d18ea6" "#767e2b" "#77592e" "#337879" "#7f5190" "#76bbca" "#b1b5ae" ];
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
services.udiskie = {
|
||||
enable = true;
|
||||
notify = true;
|
||||
|
||||
Reference in New Issue
Block a user