- Added zoxide - Adjusted gaps and border widths in niri layout. - Added new wallpaper files.
25 lines
409 B
Nix
25 lines
409 B
Nix
{pkgs, inputs, username, ...}:
|
|
{
|
|
|
|
imports = [
|
|
];
|
|
|
|
services = {
|
|
};
|
|
|
|
stylix = {
|
|
targets = {
|
|
kitty.enable = false;
|
|
#firefox = {
|
|
# enable = true;
|
|
# colorTheme.enable = true;
|
|
# profileNames = [ "${username}" ];
|
|
#};
|
|
qt.enable = true;
|
|
qt.platform = "kde";
|
|
#kde.enable = false;
|
|
zen-browser.profileNames = [ "${username}" ];
|
|
};
|
|
};
|
|
}
|