mirror of
https://github.com/henrysipp/omarchy-nix.git
synced 2026-06-06 02:39:27 -05:00
41 lines
769 B
Nix
41 lines
769 B
Nix
inputs: {
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: let
|
|
packages = import ../packages.nix {inherit pkgs;};
|
|
in {
|
|
imports = [
|
|
(import ./hyprland.nix inputs)
|
|
(import ./hyprpaper.nix)
|
|
# (import ./hyprlock.nix)
|
|
(import ./alacritty.nix)
|
|
(import ./btop.nix)
|
|
(import ./direnv.nix)
|
|
(import ./git.nix)
|
|
(import ./mako.nix)
|
|
(import ./starship.nix)
|
|
(import ./vscode.nix)
|
|
(import ./waybar.nix)
|
|
(import ./wofi.nix)
|
|
(import ./zoxide.nix)
|
|
(import ./zsh.nix)
|
|
];
|
|
|
|
home.packages = packages.homePackages;
|
|
|
|
dconf.settings = {
|
|
"org/gnome/desktop/interface" = {
|
|
color-scheme = "prefer-dark";
|
|
};
|
|
};
|
|
|
|
gtk = {
|
|
enable = true;
|
|
theme = {
|
|
name = "Adwaita-dark";
|
|
package = pkgs.gnome-themes-extra;
|
|
};
|
|
};
|
|
}
|