Added flake version of quickshell with idle support

This commit is contained in:
Nicole 2025-10-29 16:03:25 +01:00
parent 7b75fbda36
commit 5d90dca6e7
2 changed files with 2 additions and 11 deletions

View file

@ -1,8 +1,4 @@
{inputs, ...}: {
imports = [
inputs.dankMaterialShell.homeModules.dankMaterialShell.default
];
programs.dankMaterialShell = {
enable = true;
quickshell.package = inputs.quickshell.packages.x86_64-linux.default;

View file

@ -2,7 +2,6 @@
description = "Home Manager configuration of nicole";
inputs = {
# Specify the source of Home Manager and Nixpkgs.
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
home-manager = {
url = "github:nix-community/home-manager";
@ -38,7 +37,7 @@
};
};
outputs = { nixpkgs, home-manager, stylix, dgop, dms-cli, dankMaterialShell, niri, quickshell, ... }:
outputs = inputs@{ nixpkgs, home-manager, stylix, dgop, dms-cli, dankMaterialShell, niri, quickshell, ... }:
let
system = "x86_64-linux";
pkgs = nixpkgs.legacyPackages.${system};
@ -46,8 +45,6 @@
homeConfigurations."nicole" = home-manager.lib.homeManagerConfiguration {
inherit pkgs;
# Specify your home configuration modules here, for example,
# the path to your home.nix.
modules = [
stylix.homeModules.stylix
dankMaterialShell.homeModules.dankMaterialShell.default
@ -56,9 +53,7 @@
./home.nix
];
# Optionally use extraSpecialArgs
# to pass through arguments to home.nix
extraSpecialArgs = { inherit inputs; };
};
};
}