mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 09:53:55 -05:00
Aly Raffauf
1a726ab4fa
Some checks are pending
git-mirror / gitlab-sync (push) Waiting to run
nix-build / adjustor-build (push) Waiting to run
nix-build / clean-install-build (push) Waiting to run
nix-build / hhd-ui-build (push) Waiting to run
nix-build / rofi-bluetooth-build (push) Waiting to run
nix-build / fallarbor-build (push) Waiting to run
nix-build / lavaridge-build (push) Waiting to run
nix-build / mauville-build (push) Waiting to run
nix-build / pacifidlog-build (push) Waiting to run
nix-build / rustboro-build (push) Waiting to run
nix-build / slateport-build (push) Waiting to run
nix-check / fmt-check (push) Waiting to run
nix-check / eval-check (push) Waiting to run
* pacifidlog: use kde * pacifidlog: fix plasma session name for jovian * desktop: enable follows gnome and kde module
75 lines
2.3 KiB
Nix
75 lines
2.3 KiB
Nix
{
|
|
config,
|
|
lib,
|
|
osConfig,
|
|
self,
|
|
...
|
|
}: {
|
|
imports = [
|
|
./gnome
|
|
./hyprland
|
|
./kde
|
|
./sway
|
|
./wayland
|
|
];
|
|
|
|
config =
|
|
lib.mkIf (
|
|
config.ar.home.desktop.gnome.enable
|
|
|| config.ar.home.desktop.hyprland.enable
|
|
|| config.ar.home.desktop.kde.enable
|
|
|| config.ar.home.desktop.sway.enable
|
|
) {
|
|
dconf = {
|
|
enable = true;
|
|
settings = {
|
|
"org/gnome/desktop/wm/preferences".button-layout =
|
|
if (config.ar.home.desktop.gnome.enable || config.ar.home.desktop.kde.enable)
|
|
then "appmenu:minimize,maximize,close"
|
|
else "";
|
|
|
|
"org/gnome/nm-applet".disable-connected-notifications = true;
|
|
"org/gtk/gtk4/settings/file-chooser".sort-directories-first = true;
|
|
"org/gtk/settings/file-chooser".sort-directories-first = true;
|
|
|
|
"org/virt-manager/virt-manager/connections" = {
|
|
autoconnect = ["qemu:///system"];
|
|
uris = ["qemu:///system"];
|
|
};
|
|
};
|
|
};
|
|
|
|
gtk.gtk3.bookmarks =
|
|
[
|
|
"file://${config.xdg.userDirs.documents}"
|
|
"file://${config.xdg.userDirs.download}"
|
|
"file://${config.xdg.userDirs.music}"
|
|
"file://${config.xdg.userDirs.videos}"
|
|
"file://${config.xdg.userDirs.pictures}"
|
|
"file://${config.home.homeDirectory}/src"
|
|
]
|
|
++ lib.optional (
|
|
osConfig.ar.users.aly.syncthing.enable
|
|
&& (config.home.username == "aly")
|
|
) "file://${config.home.homeDirectory}/sync";
|
|
|
|
xdg = {
|
|
dataFile."backgrounds".source = self.inputs.wallpapers;
|
|
|
|
userDirs = {
|
|
enable = true;
|
|
createDirectories = true;
|
|
desktop = lib.mkDefault "${config.home.homeDirectory}/dsktp";
|
|
documents = lib.mkDefault "${config.home.homeDirectory}/docs";
|
|
download = lib.mkDefault "${config.home.homeDirectory}/dwnlds";
|
|
extraConfig = {XDG_SRC_DIR = "${config.home.homeDirectory}/src";};
|
|
music = lib.mkDefault "${config.home.homeDirectory}/music";
|
|
pictures = lib.mkDefault "${config.home.homeDirectory}/pics";
|
|
publicShare = lib.mkDefault "${config.home.homeDirectory}/pub";
|
|
templates = lib.mkDefault "${config.home.homeDirectory}/tmplts";
|
|
videos = lib.mkDefault "${config.home.homeDirectory}/vids";
|
|
};
|
|
};
|
|
};
|
|
}
|