summaryrefslogtreecommitdiff
path: root/features/user/gui/desktops/niri/parts/quickshell
diff options
context:
space:
mode:
authortriethyl <triethylammonium@pm.me>2025-07-03 22:09:00 -0400
committertriethyl <triethylammonium@pm.me>2025-07-03 22:09:00 -0400
commit1cdabfd5a0adad5b033048639ce1c4ef1a15eb58 (patch)
tree70db317e627fd3a1d9b64b4b9c5b4522bf80e9bb /features/user/gui/desktops/niri/parts/quickshell
parent645024746a29a181355d03600cf9eb4534b4d1b7 (diff)
setup quickshell dev env
Former-commit-id: 1467b650b0ce10c5ccf924829a79108c05531eb4
Diffstat (limited to 'features/user/gui/desktops/niri/parts/quickshell')
-rw-r--r--features/user/gui/desktops/niri/parts/quickshell/.gitignore1
-rw-r--r--features/user/gui/desktops/niri/parts/quickshell/flake.lock64
-rw-r--r--features/user/gui/desktops/niri/parts/quickshell/flake.nix2
3 files changed, 65 insertions, 2 deletions
diff --git a/features/user/gui/desktops/niri/parts/quickshell/.gitignore b/features/user/gui/desktops/niri/parts/quickshell/.gitignore
deleted file mode 100644
index 92b2793..0000000
--- a/features/user/gui/desktops/niri/parts/quickshell/.gitignore
+++ /dev/null
@@ -1 +0,0 @@
-.direnv
diff --git a/features/user/gui/desktops/niri/parts/quickshell/flake.lock b/features/user/gui/desktops/niri/parts/quickshell/flake.lock
new file mode 100644
index 0000000..29f5851
--- /dev/null
+++ b/features/user/gui/desktops/niri/parts/quickshell/flake.lock
@@ -0,0 +1,64 @@
+{
+ "nodes": {
+ "flake-utils": {
+ "inputs": {
+ "systems": [
+ "systems"
+ ]
+ },
+ "locked": {
+ "lastModified": 1731533236,
+ "narHash": "sha256-l0KFg5HjrsfsO/JpG+r7fRrqm12kzFHyUHqHCVpMMbI=",
+ "owner": "numtide",
+ "repo": "flake-utils",
+ "rev": "11707dc2f618dd54ca8739b309ec4fc024de578b",
+ "type": "github"
+ },
+ "original": {
+ "owner": "numtide",
+ "repo": "flake-utils",
+ "type": "github"
+ }
+ },
+ "nixpkgs": {
+ "locked": {
+ "lastModified": 1751498133,
+ "narHash": "sha256-QWJ+NQbMU+NcU2xiyo7SNox1fAuwksGlQhpzBl76g1I=",
+ "owner": "NixOS",
+ "repo": "nixpkgs",
+ "rev": "d55716bb59b91ae9d1ced4b1ccdea7a442ecbfdb",
+ "type": "github"
+ },
+ "original": {
+ "owner": "NixOS",
+ "ref": "nixpkgs-unstable",
+ "repo": "nixpkgs",
+ "type": "github"
+ }
+ },
+ "root": {
+ "inputs": {
+ "flake-utils": "flake-utils",
+ "nixpkgs": "nixpkgs",
+ "systems": "systems"
+ }
+ },
+ "systems": {
+ "locked": {
+ "lastModified": 1681028828,
+ "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=",
+ "owner": "nix-systems",
+ "repo": "default",
+ "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e",
+ "type": "github"
+ },
+ "original": {
+ "owner": "nix-systems",
+ "repo": "default",
+ "type": "github"
+ }
+ }
+ },
+ "root": "root",
+ "version": 7
+}
diff --git a/features/user/gui/desktops/niri/parts/quickshell/flake.nix b/features/user/gui/desktops/niri/parts/quickshell/flake.nix
index 4bab14a..2122f1f 100644
--- a/features/user/gui/desktops/niri/parts/quickshell/flake.nix
+++ b/features/user/gui/desktops/niri/parts/quickshell/flake.nix
@@ -21,7 +21,7 @@
in {
devShells.default = pkgs.mkShell {
packages = with pkgs; [
- hello
+ quickshell
];
};
}