summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoranand <anand.panchdhari@gmail.com>2025-12-28 19:21:23 +0530
committeranand <anand.panchdhari@gmail.com>2025-12-28 19:21:23 +0530
commit2cfcd171efb223acde6cc1ce87cd6717e003b246 (patch)
tree6c41656f06f25162e074e831173517b6be4a7e24
parent57d02057f293ef1f58553cc5d9df9599d90e4481 (diff)
some stuff idk
-rw-r--r--configuration.nix11
-rwxr-xr-xhome.nix22
2 files changed, 16 insertions, 17 deletions
diff --git a/configuration.nix b/configuration.nix
index 18277ef..118af27 100644
--- a/configuration.nix
+++ b/configuration.nix
@@ -136,7 +136,7 @@
hypridle
hyprlock
hyprshot
- trashy
+ trash-cli
nh
];
@@ -169,7 +169,6 @@
xwayland.enable = true;
};
programs.firefox.enable = true;
- programs.xfconf.enable = true;
programs.thunar = {
enable = true;
plugins = with pkgs.xfce; [
@@ -178,6 +177,8 @@
thunar-media-tags-plugin
];
};
+ programs.xfconf.enable = true;
+ programs.dconf.enable = true;
programs.auto-cpufreq = {
enable = true;
settings = {
@@ -197,12 +198,6 @@
services.openssh.enable = true;
services.spotifyd = {
enable = true;
- settings = {
- global = {
- username = "";
- password = "";
- };
- };
};
services.xserver.xkb.layout = "us";
diff --git a/home.nix b/home.nix
index 52c3662..76e9404 100755
--- a/home.nix
+++ b/home.nix
@@ -101,15 +101,6 @@ in
imv
];
- home.activation.dotfiles = lib.hm.dag.entryAfter [ "writeBoundary" ] ''
- ln -sf ${config.home.homeDirectory}/dots/shell/zshrc ${config.home.homeDirectory}/.zshrc
- ln -sf ${config.home.homeDirectory}/dots/shell/bashrc ${config.home.homeDirectory}/.bashrc
- ln -sf ${config.home.homeDirectory}/dots/shell/profile ${config.home.homeDirectory}/.profile
- ln -sf ${config.home.homeDirectory}/dots/shell/bash_profile ${config.home.homeDirectory}/.bash_profile
- ln -sf ${config.home.homeDirectory}/dots/shell/starship.toml ${config.home.homeDirectory}/.config/starship.toml
- ln -sf ${config.home.homeDirectory}/dots/shell/Xresources ${config.home.homeDirectory}/.Xresources
- '';
-
xdg.configFile = builtins.mapAttrs (name: subpath: {
source = create_symlink "${dotfiles}/${subpath}";
recursive = true;
@@ -118,4 +109,17 @@ in
home.sessionVariables = {
EDITOR = "nvim";
};
+
+ gtk = {
+ enable = true;
+ iconTheme = {
+ name = "Papirus-Dark";
+ package = pkgs.papirus-icon-theme;
+ };
+ theme = lib.mkForce {
+ name = "Nightfox-Dark";
+ package = pkgs.nightfox-gtk-theme;
+ };
+ };
+
}