diff --git a/hosts/nixos/home/users/alistreaza.nix b/hosts/nixos/home/users/alistreaza.nix index 04cef49..ac68feb 100644 --- a/hosts/nixos/home/users/alistreaza.nix +++ b/hosts/nixos/home/users/alistreaza.nix @@ -1,4 +1,4 @@ -{ pkgs, import-tree, ... }: +{ import-tree, ... }: { home-manager.users.alistreaza = { imports = [ @@ -31,10 +31,6 @@ home.firefox.enable = true; home.firefox.privacy = true; - home.packages = with pkgs; [ - zed-editor - ]; - # The state version is required and should stay at the version you # originally installed. home.stateVersion = "26.05"; diff --git a/hosts/nixos/system/os.nix b/hosts/nixos/system/os.nix index 7a00fea..5b36175 100755 --- a/hosts/nixos/system/os.nix +++ b/hosts/nixos/system/os.nix @@ -22,7 +22,7 @@ os.virtualisation.podman.enable = true; # Shells configurations - os.shells.pantheon.enable = true; + os.shells.gnome.enable = true; # Terminal programs.ssh.enableAskPassword = false; # No-window git push fix diff --git a/modules/system/nixos/shells/gnome.nix b/modules/system/nixos/shells/gnome.nix index c5195d7..e7c2485 100644 --- a/modules/system/nixos/shells/gnome.nix +++ b/modules/system/nixos/shells/gnome.nix @@ -35,6 +35,7 @@ in [ papers nautilus + gnome-text-editor ]; }; diff --git a/modules/system/nixos/shells/pantheon.nix b/modules/system/nixos/shells/pantheon.nix deleted file mode 100644 index ae363a6..0000000 --- a/modules/system/nixos/shells/pantheon.nix +++ /dev/null @@ -1,31 +0,0 @@ -{ - lib, - pkgs, - config, - ... -}: -with lib; -let - cfg = config.os.shells.pantheon; -in -{ - options.os.shells.pantheon = { - enable = mkEnableOption "System gnome shell service"; - }; - config = mkIf cfg.enable { - - services.desktopManager.pantheon.enable = true; - - environment = { - pantheon.excludePackages = with pkgs; [ - elementary-calendar - elementary-camera - elementary-mail - elementary-maps - elementary-photos - epiphany - ]; - }; - - }; -}