Compare commits

..

No commits in common. "cb68581efe69d0fbc1d719695e77ed27a7062e87" and "01a65383d735cc98ddbc8c342c2276db4dad37d3" have entirely different histories.

4 changed files with 16 additions and 4 deletions

View file

@ -174,9 +174,7 @@
self = inputs.self;
hydraJobs = {
hosts = lib.mapAttrs (_: cfg: cfg.config.system.build.toplevel) (
lib.filterAttrs (name: cfg: name != "nixberry") self.outputs.nixosConfigurations
);
hosts = lib.mapAttrs (_: cfg: cfg.config.system.build.toplevel) self.outputs.nixosConfigurations;
packages = self.packages;
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";
};
config = mkIf cfg.enable { environment.systemPackages = with pkgs; [ teamspeak6-client ]; };
config = mkIf cfg.enable { environment.systemPackages = with pkgs; [ teamspeak_client ]; };
}

View file

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

View file

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