• Relocates common configurations from a user-specific directory to a global hierarchy • Adds host-specific files and updates import paths for better modularity • Introduces an experimental GNOME mutter feature
9 lines
149 B
Nix
9 lines
149 B
Nix
{
|
|
programs.chromium = {
|
|
enable = true;
|
|
commandLineArgs = [
|
|
"--no-default-browser-check"
|
|
"--restore-last-session"
|
|
];
|
|
};
|
|
}
|