diff options
| author | anand <anand.panchdhari@gmail.com> | 2025-12-28 17:31:16 +0530 |
|---|---|---|
| committer | anand <anand.panchdhari@gmail.com> | 2025-12-28 17:31:16 +0530 |
| commit | 57d02057f293ef1f58553cc5d9df9599d90e4481 (patch) | |
| tree | fc85e5bc2040d3eb6e331e0fb1ba0e51d5c9fe0f /configuration.nix | |
| parent | f72135289c6ac6ab6fffb550cf9d0cb68ae137d8 (diff) | |
Implemented thunar correctly and possibly fixed theming and gvfs and installed image viewer and added with pkgs; to home manager
Diffstat (limited to 'configuration.nix')
| -rw-r--r-- | configuration.nix | 41 |
1 files changed, 22 insertions, 19 deletions
diff --git a/configuration.nix b/configuration.nix index cae24c2..18277ef 100644 --- a/configuration.nix +++ b/configuration.nix @@ -120,12 +120,7 @@ swww networkmanagerapplet zoxide - xfce.thunar - xfce.thunar-volman - xfce.thunar-archive-plugin - xfce.thunar-media-tags-plugin brillo - gnome.gvfs wlr-randr bat vlc @@ -163,34 +158,42 @@ virtualisation.libvirtd.enable = true; programs.virt-manager.enable = true; - programs.nix-ld.enable = true; - programs.gnupg.agent = { enable = true; enableSSHSupport = true; pinentryPackage = pkgs.pinentry-curses; }; - programs.hyprland = { enable = true; xwayland.enable = true; }; - programs.firefox.enable = true; - - programs.auto-cpufreq.enable = true; - programs.auto-cpufreq.settings = { - charger = { - governer = "performance"; - turbo = "auto"; - }; - battery = { - governer = "powersave"; - turbo = "auto"; + programs.xfconf.enable = true; + programs.thunar = { + enable = true; + plugins = with pkgs.xfce; [ + thunar-volman + thunar-archive-plugin + thunar-media-tags-plugin + ]; + }; + programs.auto-cpufreq = { + enable = true; + settings = { + charger = { + governer = "performance"; + turbo = "auto"; + }; + battery = { + governer = "powersave"; + turbo = "auto"; + }; }; }; + services.gvfs.enable = true; + services.tumbler.enable = true; services.openssh.enable = true; services.spotifyd = { enable = true; |
