configuration.nix/home/default.nix

25 lines
568 B
Nix
Raw Normal View History

2024-03-06 22:33:11 +05:30
_: {
2024-04-21 21:43:32 +05:30
imports = [ ./programs ./services ./wm ./gtk.nix ./qt.nix ./persistence.nix ];
2023-06-02 11:28:54 +05:30
home.stateVersion = "23.11";
2023-10-02 17:23:23 +05:30
xdg = {
2023-07-16 17:32:38 +05:30
enable = true;
2023-10-02 17:23:23 +05:30
mime.enable = true;
mimeApps = {
enable = true;
defaultApplications = {
2023-11-04 16:12:45 +05:30
"x-scheme-handler/tg" = [ "org.telegram.desktop.desktop" ];
2024-04-26 22:35:39 +05:30
"x-scheme-handler/magnet" = [ "io.github.TransmissionRemoteGtk.desktop" ];
2023-10-02 17:23:23 +05:30
};
2023-07-16 17:32:38 +05:30
};
2023-10-02 17:23:23 +05:30
userDirs.enable = true;
2023-10-02 17:23:23 +05:30
desktopEntries."nixos-manual" = {
name = "NixOS Manual";
exec = "nixos-help";
noDisplay = true;
};
};
}