non important commit

This commit is contained in:
benstrb 2026-03-08 10:15:42 +01:00
parent e6af920b6f
commit ebe4741b0e
9 changed files with 77 additions and 238 deletions

View file

@ -0,0 +1 @@
/nix/store/0w79bqwfd5zhb2276d0c00yiffzq4cwj-source

View file

@ -1 +0,0 @@
/nix/store/ddg3qnbkh6m0b2q0z9ldjr36h4lvzxv4-source

View file

@ -0,0 +1 @@
/nix/store/z940vdbq3mm4iqp6mxhhn2x0xma9y6j2-source

View file

@ -1 +1 @@
/nix/store/aj1iyz6dgmywgxl880372d7xzf94yjb7-nix-shell-env
/nix/store/2k841qrncbdwlfm2fcnim4vslv2h027d-nix-shell-env

View file

@ -16,9 +16,30 @@
"type": "github"
}
},
"quickshell": {
"inputs": {
"nixpkgs": [
"nixpkgs"
]
},
"locked": {
"lastModified": 1772925576,
"narHash": "sha256-mMoiXABDtkSJxCYDrkhJ/TrrJf5M46oUfIlJvv2gkZ0=",
"ref": "refs/heads/master",
"rev": "15a84097653593dd15fad59a56befc2b7bdc270d",
"revCount": 750,
"type": "git",
"url": "https://git.outfoxxed.me/outfoxxed/quickshell"
},
"original": {
"type": "git",
"url": "https://git.outfoxxed.me/outfoxxed/quickshell"
}
},
"root": {
"inputs": {
"nixpkgs": "nixpkgs"
"nixpkgs": "nixpkgs",
"quickshell": "quickshell"
}
}
},

View file

@ -1,14 +1,27 @@
{
inputs.nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
outputs = {nixpkgs, ...}: let
quickshell = {
url = "git+https://git.outfoxxed.me/outfoxxed/quickshell";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = {
nixpkgs,
quickshell,
...
}: let
pkgs = nixpkgs.legacyPackages.x86_64-linux;
qs = quickshell.packages.x86_64-linux.default;
in {
devShells.x86_64-linux.default = pkgs.mkShell {
packages = [
pkgs.quickshell
pkgs.kdePackages.qtdeclarative
qs
];
};
packages.x86_64-linux.default = qs;
};
}