had to switch to unstable for dms to work

This commit is contained in:
2025-10-30 11:02:09 +01:00
parent f5d5791efd
commit a8d8c4dde9
8 changed files with 266 additions and 212 deletions

View File

@@ -130,7 +130,7 @@ in
ms-python.python
ms-python.isort
ms-python.debugpy
ms-python.vscode-pylance
# ms-python.vscode-pylance
ms-toolsai.vscode-jupyter-slideshow
ms-toolsai.jupyter
ms-toolsai.jupyter-hub

View File

@@ -9,7 +9,6 @@ in
default = [
"gnome-keyring-daemon --start --components=secrets"
"wl-paste --watch cliphist store"
"${lib.getExe pkgs.waybar}"
"${lib.getExe pkgs.hypridle}"
# TODO - currently broken
"${pkgs.owncloud-client}"

View File

@@ -26,7 +26,7 @@ in
];
# enable waybar
programs.waybar.enable = true;
programs.waybar.enable = false;
programs.waybar = {
settings = {

View File

@@ -1,36 +1,28 @@
{
config,
inputs,
lib,
pkgs,
builtins,
...
}:
let
cfg = config.nix-config.quickshell;
qs = inputs.quickshell.packages.x86_64-linux.default;
in
{
options.nix-config.quickshell.enable = lib.mkEnableOption {
name = "quickshell";
description = "Whether to enable quickshell.";
default = true;
};
programs.dankMaterialShell.enable = true;
config = lib.mkIf cfg.enable {
home.packages = [
qs
pkgs.qt6.qtimageformats
pkgs.qt6.qt5compat
pkgs.qt6.qtmultimedia
pkgs.qt6.qtdeclarative
pkgs.qt6.qtsvg
pkgs.qt6.qtwayland
pkgs.qt6.qtbase
programs.dankMaterialShell = {
enableSystemd = true;
enableSystemMonitoring = false;
enableClipboard = true;
enableVPN = true;
enableBrightnessControl = true;
enableColorPicker = false;
enableDynamicTheming = true;
enableAudioWavelength = false;
enableCalendarEvents = false;
enableSystemSound = true;
];
# default = {
# settings = ''{}'';
# session = ''{}'';
# };
# add the quickshell config (whole directory) to XDG_CONFIG_HOME
# home.file.".config/quickshell/config".source = ./config;
# plugins = {};
};
}