mirror of
https://github.com/librephoenix/nixos-config
synced 2025-01-19 07:05:51 +05:30
Compare commits
2 commits
e9951d4d7a
...
c0d4278c31
Author | SHA1 | Date | |
---|---|---|---|
c0d4278c31 | |||
4015df2e40 |
|
@ -1,4 +1,4 @@
|
||||||
{ pkgs, ... }:
|
{ config, pkgs, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
imports = [ ./pipewire.nix
|
imports = [ ./pipewire.nix
|
||||||
|
@ -7,7 +7,18 @@
|
||||||
./fonts.nix
|
./fonts.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
environment.systemPackages = [ pkgs.wayland pkgs.waydroid ];
|
environment.systemPackages = with pkgs;
|
||||||
|
[ wayland waydroid
|
||||||
|
(sddm-chili-theme.override {
|
||||||
|
themeConfig = {
|
||||||
|
background = config.stylix.image;
|
||||||
|
ScreenWidth = 1920;
|
||||||
|
ScreenHeight = 1080;
|
||||||
|
blur = true;
|
||||||
|
recursiveBlurLoops = 3;
|
||||||
|
recursiveBlurRadius = 5;
|
||||||
|
};})
|
||||||
|
];
|
||||||
|
|
||||||
# Configure xwayland
|
# Configure xwayland
|
||||||
services.xserver = {
|
services.xserver = {
|
||||||
|
@ -15,9 +26,11 @@
|
||||||
layout = "us";
|
layout = "us";
|
||||||
xkbVariant = "";
|
xkbVariant = "";
|
||||||
xkbOptions = "caps:escape";
|
xkbOptions = "caps:escape";
|
||||||
displayManager.gdm = {
|
displayManager.sddm = {
|
||||||
enable = true;
|
enable = true;
|
||||||
wayland = true;
|
wayland.enable = true;
|
||||||
|
enableHidpi = true;
|
||||||
|
theme = "chili";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue