This commit is contained in:
blahai 2024-09-02 12:05:00 +03:00
parent f20c16ac95
commit 0a50b61903
No known key found for this signature in database
175 changed files with 305 additions and 22000 deletions

View file

@ -1,25 +1,56 @@
{ inputs, pkgs, lib, ... }:
{
{ inputs, pkgs, lib, ... }: {
# add the home manager module
imports = [ inputs.ags.homeManagerModules.default ];
home.activation = {
linkAgs = lib.hm.dag.entryAfter ["writeBoundary"] ''
ln -sf ./ags ~/.config/ags
'';
};
home.packages = with pkgs; [
gnome.gnome-control-center
blueberry
gammastep
gnome.gnome-bluetooth
material-symbols
gnome-usage
ddcutil
inotify-tools
ollama
pywal
dart-sass
unstable.hicolor-icon-theme
yad
(python311.withPackages (p: [
p.material-color-utilities
p.pywayland
materialyoucolor
p.libsass
]))
];
#home.activation = {
# linkAgs = lib.hm.dag.entryAfter ["writeBoundary"] ''
# ln -sf ~/.config/nixos/modules/home-manager/ags/ags ~/.config/ags
# '';
#};
programs.ags = {
enable = true;
# null or path, leave as null if you don't want hm to manage the config
# configDir = ../ags;
configDir = null;
# additional packages to add to gjs's runtime
extraPackages = with pkgs; [
hicolor-icon-theme
gnome-usage
gtksourceview
gtksourceview4
ollama
python311Packages.material-color-utilities
python311Packages.pywayland
pywal
dart-sass
webkitgtk
accountsservice
webp-pixbuf-loader
ydotool
];
};
}