mirror of
https://github.com/bartvdbraak/dotfiles.git
synced 2025-04-27 14:41:20 +00:00
Set greeter wallpaper and add Blender
This commit is contained in:
parent
5d95e7c409
commit
4eeef86ac9
3 changed files with 13 additions and 3 deletions
|
@ -1,5 +1,8 @@
|
||||||
{ pkgs, inputs, config, ... }:
|
{ pkgs, inputs, config, ... }:
|
||||||
|
|
||||||
|
let
|
||||||
|
customWallpaper = "/nix/store/fvplr8bbp5b9n2x6s21bp4nai80adk8j-wallhaven-zyerpj.jpg";
|
||||||
|
in
|
||||||
{
|
{
|
||||||
environment.systemPackages = with pkgs; with inputs; [
|
environment.systemPackages = with pkgs; with inputs; [
|
||||||
inputs.zen-browser.packages."${system}".default
|
inputs.zen-browser.packages."${system}".default
|
||||||
|
@ -11,5 +14,9 @@
|
||||||
fzf
|
fzf
|
||||||
jq
|
jq
|
||||||
ripgrep
|
ripgrep
|
||||||
|
(pkgs.writeTextDir "share/sddm/themes/breeze/theme.conf.user" ''
|
||||||
|
[General]
|
||||||
|
background=${customWallpaper}
|
||||||
|
'')
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,11 +1,13 @@
|
||||||
{ pkgs, ... }:
|
{ pkgs, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
# X11 is disabled, but we're using SDDM with Wayland
|
# Desktop, display and greeter configuration
|
||||||
services.xserver.enable = false;
|
services.xserver.enable = false;
|
||||||
services.displayManager.sddm.enable = true;
|
|
||||||
services.displayManager.sddm.wayland.enable = true;
|
|
||||||
services.desktopManager.plasma6.enable = true;
|
services.desktopManager.plasma6.enable = true;
|
||||||
|
services.displayManager.sddm = {
|
||||||
|
enable = true;
|
||||||
|
wayland.enable = true;
|
||||||
|
};
|
||||||
|
|
||||||
# Audio system with PipeWire
|
# Audio system with PipeWire
|
||||||
# Enable PipeWire and ALSA support
|
# Enable PipeWire and ALSA support
|
||||||
|
|
|
@ -23,6 +23,7 @@
|
||||||
corepack_22
|
corepack_22
|
||||||
azure-cli
|
azure-cli
|
||||||
sops
|
sops
|
||||||
|
blender
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue