aboutsummaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
authorAargh Rai <aargh.rai+git@gmail.com>2025-12-08 11:53:23 +0530
committerAargh Rai <aargh.rai+git@gmail.com>2025-12-08 11:53:23 +0530
commite6cf56ead8382d6bcd4d9f8d7a28490887bae92a (patch)
tree95160419d00e5f278a0cefbf1916c4f9a852742d /flake.nix
parent6cdd44c09685f15b66bf247801a7d5fbc0f2d0f3 (diff)
miraged from waybar to quickshell
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix14
1 files changed, 12 insertions, 2 deletions
diff --git a/flake.nix b/flake.nix
index 0cc117c..52c2a64 100644
--- a/flake.nix
+++ b/flake.nix
@@ -8,9 +8,19 @@
url = "github:nix-community/home-manager/release-25.11";
inputs.nixpkgs.follows = "nixpkgs";
};
+ quickshell = {
+ url = "git+https://git.outfoxxed.me/quickshell/quickshell";
+ inputs.nixpkgs.follows = "nixpkgs";
+ };
};
- outputs = { self, nixpkgs, nixpkgs-unstable, home-manager, ... }@inputs:
+ outputs = {
+ self,
+ nixpkgs,
+ nixpkgs-unstable,
+ home-manager,
+ quickshell,
+ ... }@inputs:
let
system = "x86_64-linux";
username = "aargh";
@@ -32,7 +42,7 @@
nixosConfigurations.main = nixpkgs.lib.nixosSystem {
inherit system;
specialArgs = {
- inherit inputs username hostname unstable symlinkRoot nvidia;
+ inherit quickshell inputs username hostname unstable symlinkRoot nvidia;
};
modules = [