mirror of
https://codeberg.org/privacy1st/nix-git
synced 2024-11-21 22:03:19 +01:00
gnome-terminal nautilus integration
This commit is contained in:
parent
df7683d699
commit
b8aee92498
@ -1,12 +1,23 @@
|
||||
{ config, pkgs, ... }:
|
||||
{
|
||||
# users.users.yoda = {
|
||||
# packages = with pkgs; [
|
||||
# gnome.gnome-terminal
|
||||
# ];
|
||||
# };
|
||||
users.users.yoda = {
|
||||
packages = with pkgs; [
|
||||
#gnome.gnome-terminal # Terminal emulator
|
||||
nautilus-open-any-terminal # For Nautilus (GNOME files) integration
|
||||
];
|
||||
};
|
||||
|
||||
# For Nautilus (GNOME files) integration
|
||||
programs.dconf.enable = true;
|
||||
|
||||
home-manager.users.yoda = { osConfig, config, pkgs, ... }: {
|
||||
dconf.settings = {
|
||||
# For Nautilus (GNOME files) integration
|
||||
"com/github/stunkymonkey/nautilus-open-any-terminal" = {
|
||||
terminal = "gnome-terminal";
|
||||
};
|
||||
};
|
||||
|
||||
programs.gnome-terminal.enable = true;
|
||||
programs.gnome-terminal.profile."74b90a31-5123-4a64-91a3-3cb31eb5cdb6" = {
|
||||
default = true;
|
||||
|
Loading…
Reference in New Issue
Block a user