more desktop configuration
This commit is contained in:
parent
240a170c53
commit
97719f3d77
6 changed files with 269 additions and 7 deletions
|
@ -1,8 +1,32 @@
|
|||
{ pkgs, ... }: {
|
||||
imports = [
|
||||
./font.nix
|
||||
./firefox.nix
|
||||
./kitty.nix
|
||||
];
|
||||
|
||||
fonts.fontconfig.enable = true;
|
||||
home.packages = with pkgs; [
|
||||
wf-recorder
|
||||
wl-clipboard
|
||||
];
|
||||
home.sessionVariables = {
|
||||
MOZ_ENABLE_WAYLAND = 1;
|
||||
QT_QPA_PLATFORM = "wayland";
|
||||
LIBSEAT_BACKEND = "logind";
|
||||
};
|
||||
|
||||
programs.imv.enable = true;
|
||||
|
||||
xdg.mimeApps.enable = true;
|
||||
xdg.portal = {
|
||||
enable = true;
|
||||
extraPortals = [pkgs.xdg-desktop-portal-wlr];
|
||||
config = {
|
||||
common = {
|
||||
default = [
|
||||
"wlr"
|
||||
];
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue