19 lines
452 B
Nix
19 lines
452 B
Nix
# Wayland home.nix
|
|
{ config, lib, pkgs, inputs, user, ... }:
|
|
{
|
|
imports = [
|
|
inputs.gtk-nix.homeManagerModule
|
|
./gui.nix
|
|
./dots/foot.nix
|
|
./dots/mako.nix
|
|
./dots/river.nix
|
|
./dots/special.nix
|
|
./dots/swappy.nix
|
|
./dots/swaylock.nix
|
|
./dots/way-displays.nix
|
|
];
|
|
# themes can be found here: https://github.com/tinted-theming/base16-schemes
|
|
colorScheme = inputs.nix-colors.colorSchemes.dracula;
|
|
gtkNix.enable = true;
|
|
}
|