added quickshell

This commit is contained in:
kenji
2025-07-01 08:57:33 -05:00
parent b37edeed36
commit c7787f3d27
4 changed files with 34 additions and 0 deletions
Generated
+21
View File
@@ -882,6 +882,26 @@
"type": "github"
}
},
"quickshell": {
"inputs": {
"nixpkgs": [
"nixpkgs"
]
},
"locked": {
"lastModified": 1751354716,
"narHash": "sha256-bLMNn3gh09gtkIEwZW3USt4ehLrmwmfnb3rqahYBI+4=",
"ref": "refs/heads/master",
"rev": "f681e2016fd71b42985bd520b3a20c62488582e9",
"revCount": 599,
"type": "git",
"url": "https://git.outfoxxed.me/outfoxxed/quickshell"
},
"original": {
"type": "git",
"url": "https://git.outfoxxed.me/outfoxxed/quickshell"
}
},
"root": {
"inputs": {
"ags": "ags",
@@ -892,6 +912,7 @@
"nix-gaming": "nix-gaming",
"nixovim": "nixovim",
"nixpkgs": "nixpkgs_3",
"quickshell": "quickshell",
"sops-nix": "sops-nix",
"unlisted-fonts": "unlisted-fonts"
}
+3
View File
@@ -28,6 +28,9 @@
sops-nix.url = "github:Mic92/sops-nix";
sops-nix.inputs.nixpkgs.follows = "nixpkgs";
quickshell.url = "git+https://git.outfoxxed.me/outfoxxed/quickshell";
quickshell.inputs.nixpkgs.follows = "nixpkgs";
};
outputs = {
+1
View File
@@ -11,6 +11,7 @@
../packages/rofi/default.nix
../packages/matugen/default.nix
../packages/swww/default.nix
../packages/quickshell/default.nix
]
++ lib.optionals (myConfig.linux.gaming == true) [
../packages/mangohud/default.nix
+9
View File
@@ -0,0 +1,9 @@
{
pkgs,
inputs,
...
}: {
imports = [
inputs.quickshell.packages.${pkgs.system}.default
];
}