mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 08:33:55 -05:00
Aly Raffauf
7798d01cae
Some checks are pending
git-mirror / gitlab-sync (push) Waiting to run
nix-build / default-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 / petalburg-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
* firefox: add gnome browser connector * lavaridge: remove commented gnome settings * nixos: add gnome module * nix fmt * vscode: use custom titlebar on gnome * theme: check for gnome before adding extraCss * firefox: browsers in titlebar when gnome is enabled * home: add gnome settings * desktop: set gtk window decorations * gnome: remove gsconnect * Merge branch 'master' into add-gnome
72 lines
2.2 KiB
Nix
72 lines
2.2 KiB
Nix
{
|
|
config,
|
|
lib,
|
|
osConfig,
|
|
self,
|
|
...
|
|
}: {
|
|
imports = [
|
|
./gnome
|
|
./hyprland
|
|
./sway
|
|
./wayland
|
|
];
|
|
|
|
config =
|
|
lib.mkIf (
|
|
config.ar.home.desktop.hyprland.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
|
|
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";
|
|
};
|
|
};
|
|
};
|
|
}
|