summaryrefslogtreecommitdiff
path: root/home-manager/features/gui/desktops/niri/parts/quickshell/flake.nix
diff options
context:
space:
mode:
authortriethyl <triethylammonium@pm.me>2025-10-15 08:39:09 -0400
committertriethyl <triethylammonium@pm.me>2025-10-15 08:39:09 -0400
commita9fc9cf8832c471854bb7fa61137a5272f1076b6 (patch)
treee640b844ea405943c6f4aca5bd40bc299ef37ecf /home-manager/features/gui/desktops/niri/parts/quickshell/flake.nix
parentcc295c0d7e2c6ce80117322ea29f0f8219cd7a12 (diff)
niri: rearranged files and small changes
Diffstat (limited to 'home-manager/features/gui/desktops/niri/parts/quickshell/flake.nix')
-rw-r--r--home-manager/features/gui/desktops/niri/parts/quickshell/flake.nix29
1 files changed, 0 insertions, 29 deletions
diff --git a/home-manager/features/gui/desktops/niri/parts/quickshell/flake.nix b/home-manager/features/gui/desktops/niri/parts/quickshell/flake.nix
deleted file mode 100644
index 2122f1f..0000000
--- a/home-manager/features/gui/desktops/niri/parts/quickshell/flake.nix
+++ /dev/null
@@ -1,29 +0,0 @@
-{
- description = "Project flake";
-
- inputs = {
- nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
- systems.url = "github:nix-systems/default";
- flake-utils = {
- url = "github:numtide/flake-utils";
- inputs.systems.follows = "systems";
- };
- };
-
- outputs = {
- nixpkgs,
- flake-utils,
- ...
- }:
- flake-utils.lib.eachDefaultSystem (
- system: let
- pkgs = nixpkgs.legacyPackages.${system};
- in {
- devShells.default = pkgs.mkShell {
- packages = with pkgs; [
- quickshell
- ];
- };
- }
- );
-}