mirror of
https://github.com/Dichgrem/DCGOS.git
synced 2025-12-17 03:31:59 -05:00
15 lines
273 B
Nix
15 lines
273 B
Nix
{pkgs, ...}: {
|
|
dconf.settings = {
|
|
"org/nemo/preferences" = {
|
|
"date-font-choice" = "no-mono";
|
|
"date-format" = "iso";
|
|
"default-folder-viewer" = "list-view";
|
|
"show-hidden-files" = true;
|
|
};
|
|
};
|
|
|
|
home.packages = with pkgs; [
|
|
nemo
|
|
];
|
|
}
|