Nettoyage des fichiers de configuration

This commit is contained in:
2026-07-23 20:55:01 +02:00
parent 862d9291be
commit b985fb589c
4 changed files with 3 additions and 37 deletions
+1 -5
View File
@@ -1,4 +1,4 @@
{ pkgs, import-tree, ... }: { import-tree, ... }:
{ {
home-manager.users.alistreaza = { home-manager.users.alistreaza = {
imports = [ imports = [
@@ -31,10 +31,6 @@
home.firefox.enable = true; home.firefox.enable = true;
home.firefox.privacy = true; home.firefox.privacy = true;
home.packages = with pkgs; [
zed-editor
];
# The state version is required and should stay at the version you # The state version is required and should stay at the version you
# originally installed. # originally installed.
home.stateVersion = "26.05"; home.stateVersion = "26.05";
+1 -1
View File
@@ -22,7 +22,7 @@
os.virtualisation.podman.enable = true; os.virtualisation.podman.enable = true;
# Shells configurations # Shells configurations
os.shells.pantheon.enable = true; os.shells.gnome.enable = true;
# Terminal # Terminal
programs.ssh.enableAskPassword = false; # No-window git push fix programs.ssh.enableAskPassword = false; # No-window git push fix
+1
View File
@@ -35,6 +35,7 @@ in
[ [
papers papers
nautilus nautilus
gnome-text-editor
]; ];
}; };
-31
View File
@@ -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
];
};
};
}