Compare commits
3 commits
33fae52e47
...
fd99cbd41f
| Author | SHA1 | Date | |
|---|---|---|---|
| fd99cbd41f | |||
| 297d0083d8 | |||
| 3b54ad983d |
6 changed files with 7 additions and 10 deletions
|
|
@ -6,8 +6,8 @@ let
|
|||
in
|
||||
{
|
||||
config = mkIf cfg.enable {
|
||||
services.xserver.displayManager.gdm.enable = true;
|
||||
services.xserver.desktopManager.gnome.enable = true;
|
||||
services.displayManager.gdm.enable = true;
|
||||
services.desktopManager.gnome.enable = true;
|
||||
# TODO: agree on this with randomcat as it affects her too, since for some reason this is system-wide
|
||||
# environment.gnome.excludePackages = with pkgs.gnome; [
|
||||
# pkgs.gnome-tour
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
# dconf is the configuration manager for GNOME.
|
||||
|
||||
let
|
||||
isGnome = osConfig.services.xserver.desktopManager.gnome.enable;
|
||||
isGnome = osConfig.services.desktopManager.gnome.enable;
|
||||
in
|
||||
{
|
||||
dconf.enable = isGnome;
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
let
|
||||
inherit (lib) optionals;
|
||||
isGraphical = osConfig.services.xserver.enable;
|
||||
isGnome = osConfig.services.xserver.desktopManager.gnome.enable;
|
||||
isGnome = osConfig.services.desktopManager.gnome.enable;
|
||||
isPlasma = osConfig.services.desktopManager.plasma6.enable;
|
||||
in
|
||||
{
|
||||
|
|
|
|||
|
|
@ -4,8 +4,8 @@ let
|
|||
inherit (lib) mkForce;
|
||||
in
|
||||
{
|
||||
services.xserver.displayManager.gdm.enable = mkForce false;
|
||||
services.xserver.desktopManager.gnome.enable = mkForce false;
|
||||
services.displayManager.gdm.enable = mkForce false;
|
||||
services.desktopManager.gnome.enable = mkForce false;
|
||||
services.displayManager.sddm.enable = true;
|
||||
services.displayManager.sddm.wayland.enable = true;
|
||||
services.desktopManager.plasma6.enable = true;
|
||||
|
|
|
|||
|
|
@ -18,10 +18,6 @@ in
|
|||
|
||||
services.actual = {
|
||||
enable = true;
|
||||
# nixos 25.05 is on actual-server 25.6.1 which contains an annoying bug
|
||||
# nixpkgs maintainers declined to backport a newer version, so get this from unstable for now
|
||||
# ref. https://github.com/NixOS/nixpkgs/issues/423541
|
||||
package = (import inputs.nixpkgs-unstable-small { system = "x86_64-linux"; }).actual-server;
|
||||
settings.port = 5006;
|
||||
};
|
||||
};
|
||||
|
|
|
|||
|
|
@ -29,6 +29,7 @@ in
|
|||
dns = {
|
||||
magic_dns = true;
|
||||
base_domain = "birdsong.network";
|
||||
override_local_dns = false;
|
||||
};
|
||||
|
||||
# disable built-in ACME client
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue