diff options
| author | Aargh Rai <aargh.rai+git@gmail.com> | 2025-12-08 11:53:23 +0530 |
|---|---|---|
| committer | Aargh Rai <aargh.rai+git@gmail.com> | 2025-12-08 11:53:23 +0530 |
| commit | e6cf56ead8382d6bcd4d9f8d7a28490887bae92a (patch) | |
| tree | 95160419d00e5f278a0cefbf1916c4f9a852742d /flake.nix | |
| parent | 6cdd44c09685f15b66bf247801a7d5fbc0f2d0f3 (diff) | |
miraged from waybar to quickshell
Diffstat (limited to 'flake.nix')
| -rw-r--r-- | flake.nix | 14 |
1 files changed, 12 insertions, 2 deletions
@@ -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 = [ |
