mirror of
https://github.com/blahai/nyx.git
synced 2025-06-19 04:27:00 -04:00
Initial commit
This commit is contained in:
commit
fcfb6cf997
8 changed files with 1720 additions and 0 deletions
19
modules/home-manager/ags/ags.nix
Normal file
19
modules/home-manager/ags/ags.nix
Normal file
|
@ -0,0 +1,19 @@
|
|||
{ inputs, pkgs, ... }:
|
||||
{
|
||||
# add the home manager module
|
||||
imports = [ inputs.ags.homeManagerModules.default ];
|
||||
|
||||
programs.ags = {
|
||||
enable = true;
|
||||
|
||||
# null or path, leave as null if you don't want hm to manage the config
|
||||
# configDir = ../ags;
|
||||
|
||||
# additional packages to add to gjs's runtime
|
||||
extraPackages = with pkgs; [
|
||||
gtksourceview
|
||||
webkitgtk
|
||||
accountsservice
|
||||
];
|
||||
};
|
||||
}
|
31
modules/home-manager/hyprland.nix
Normal file
31
modules/home-manager/hyprland.nix
Normal file
|
@ -0,0 +1,31 @@
|
|||
{ inputs, options, config, pkgs, lib, ... }:
|
||||
|
||||
{
|
||||
home.packages = with pkgs; [
|
||||
foot
|
||||
swww
|
||||
mpvpaper
|
||||
libnotify
|
||||
cliphist
|
||||
wl-clipboard
|
||||
fzf
|
||||
fuzzel
|
||||
pywal
|
||||
yad
|
||||
jq
|
||||
python312Packages.pywayland
|
||||
python312Packages.psutil
|
||||
python312Packages.pillow
|
||||
python312Packages.wheel
|
||||
python312Packages.materialyoucolor
|
||||
python312Packages.libsass
|
||||
python312Packages.material-color-utilities
|
||||
dart-sass
|
||||
hyprlock
|
||||
hyprpicker
|
||||
];
|
||||
|
||||
#wayland.windowManager.hyprland = {
|
||||
# enable = true;
|
||||
#};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue