Compare commits

...

3 commits

4 changed files with 4 additions and 16 deletions

View file

@ -174,7 +174,9 @@
self = inputs.self; self = inputs.self;
hydraJobs = { hydraJobs = {
hosts = lib.mapAttrs (_: cfg: cfg.config.system.build.toplevel) self.outputs.nixosConfigurations; hosts = lib.mapAttrs (_: cfg: cfg.config.system.build.toplevel) (
lib.filterAttrs (name: cfg: name != "nixberry") self.outputs.nixosConfigurations
);
packages = self.packages; packages = self.packages;
shells = lib.filterAttrs (name: shell: name == "x86_64-linux") self.devShells; shells = lib.filterAttrs (name: shell: name == "x86_64-linux") self.devShells;
}; };

View file

@ -15,5 +15,5 @@ in
enable = mkBoolOpt false "Whether or not to enable basic configuration"; enable = mkBoolOpt false "Whether or not to enable basic configuration";
}; };
config = mkIf cfg.enable { environment.systemPackages = with pkgs; [ teamspeak_client ]; }; config = mkIf cfg.enable { environment.systemPackages = with pkgs; [ teamspeak6-client ]; };
} }

View file

@ -159,18 +159,6 @@ in
}; };
}; };
# services.greetd = {
# enable = true;
# settings = rec {
# initial_session = {
# command = "${hyprland-package}/bin/Hyprland";
# user = "cholli";
# };
# default_session = initial_session;
# };
# };
#
services.displayManager.gdm = { services.displayManager.gdm = {
enable = true; enable = true;
wayland = true; wayland = true;

View file

@ -19,8 +19,6 @@ in
config = mkIf cfg.enable { config = mkIf cfg.enable {
services.gnome.gnome-keyring.enable = true; services.gnome.gnome-keyring.enable = true;
security.pam.services.gdm.enableGnomeKeyring = true; security.pam.services.gdm.enableGnomeKeyring = true;
security.pam.services.sddm.enableGnomeKeyring = true;
security.pam.services.greetd.enableGnomeKeyring = true;
services.dbus.packages = [ services.dbus.packages = [
pkgs.gnome-keyring pkgs.gnome-keyring