Added flake version of quickshell with idle support
This commit is contained in:
parent
7b75fbda36
commit
5d90dca6e7
2 changed files with 2 additions and 11 deletions
|
|
@ -1,8 +1,4 @@
|
||||||
{inputs, ...}: {
|
{inputs, ...}: {
|
||||||
imports = [
|
|
||||||
inputs.dankMaterialShell.homeModules.dankMaterialShell.default
|
|
||||||
];
|
|
||||||
|
|
||||||
programs.dankMaterialShell = {
|
programs.dankMaterialShell = {
|
||||||
enable = true;
|
enable = true;
|
||||||
quickshell.package = inputs.quickshell.packages.x86_64-linux.default;
|
quickshell.package = inputs.quickshell.packages.x86_64-linux.default;
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,6 @@
|
||||||
description = "Home Manager configuration of nicole";
|
description = "Home Manager configuration of nicole";
|
||||||
|
|
||||||
inputs = {
|
inputs = {
|
||||||
# Specify the source of Home Manager and Nixpkgs.
|
|
||||||
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
|
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
|
||||||
home-manager = {
|
home-manager = {
|
||||||
url = "github:nix-community/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
|
let
|
||||||
system = "x86_64-linux";
|
system = "x86_64-linux";
|
||||||
pkgs = nixpkgs.legacyPackages.${system};
|
pkgs = nixpkgs.legacyPackages.${system};
|
||||||
|
|
@ -46,8 +45,6 @@
|
||||||
homeConfigurations."nicole" = home-manager.lib.homeManagerConfiguration {
|
homeConfigurations."nicole" = home-manager.lib.homeManagerConfiguration {
|
||||||
inherit pkgs;
|
inherit pkgs;
|
||||||
|
|
||||||
# Specify your home configuration modules here, for example,
|
|
||||||
# the path to your home.nix.
|
|
||||||
modules = [
|
modules = [
|
||||||
stylix.homeModules.stylix
|
stylix.homeModules.stylix
|
||||||
dankMaterialShell.homeModules.dankMaterialShell.default
|
dankMaterialShell.homeModules.dankMaterialShell.default
|
||||||
|
|
@ -56,9 +53,7 @@
|
||||||
./home.nix
|
./home.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
|
extraSpecialArgs = { inherit inputs; };
|
||||||
# Optionally use extraSpecialArgs
|
|
||||||
# to pass through arguments to home.nix
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue