move things

This commit is contained in:
joy 2024-10-23 15:47:23 +02:00
parent eb757e1d5e
commit 214c8badb7
2 changed files with 8 additions and 4 deletions

View file

@ -1,10 +1,8 @@
{
home-manager = {
backupFileExtension = "bak";
backupFileExtension = "bkp";
users.joy = {
programs.home-manager.enable = true;
xresources.path = ".config/.Xresources";
gtk.gtk2.configLocation = "/home/joy/.config/gtk-2.0/gtkrc";
home = {
username = "joy";
homeDirectory = "/home/joy";

View file

@ -1,4 +1,8 @@
{pkgs, ...}: {
{
pkgs,
config,
...
}: {
home.packages = with pkgs; [
hyprpicker
playerctl
@ -23,4 +27,6 @@
gnome-sound-recorder
kdePackages.kdenlive
];
gtk.gtk2.configLocation = "${config.home.homeDirectory}/.config/gtk-2.0/gtkrc";
xresources.path = ".config/.Xresources";
}