diff options
| author | triethyl <triethylammonium@pm.me> | 2025-07-03 21:58:13 -0400 |
|---|---|---|
| committer | triethyl <triethylammonium@pm.me> | 2025-07-03 21:58:13 -0400 |
| commit | 645024746a29a181355d03600cf9eb4534b4d1b7 (patch) | |
| tree | 83e961f51cbc1c7b30d06ddeffa4848da7f3546e /features/user | |
| parent | 9f5695372e58915e7125e7ccd04ba97cdfddd674 (diff) | |
initialized
Former-commit-id: b1c7893832fe8cdda2fa72825ed7aaa6244c395f
Diffstat (limited to 'features/user')
3 files changed, 31 insertions, 0 deletions
diff --git a/features/user/gui/desktops/niri/parts/quickshell/.envrc b/features/user/gui/desktops/niri/parts/quickshell/.envrc new file mode 100644 index 0000000..3550a30 --- /dev/null +++ b/features/user/gui/desktops/niri/parts/quickshell/.envrc @@ -0,0 +1 @@ +use flake diff --git a/features/user/gui/desktops/niri/parts/quickshell/.gitignore b/features/user/gui/desktops/niri/parts/quickshell/.gitignore new file mode 100644 index 0000000..92b2793 --- /dev/null +++ b/features/user/gui/desktops/niri/parts/quickshell/.gitignore @@ -0,0 +1 @@ +.direnv diff --git a/features/user/gui/desktops/niri/parts/quickshell/flake.nix b/features/user/gui/desktops/niri/parts/quickshell/flake.nix new file mode 100644 index 0000000..4bab14a --- /dev/null +++ b/features/user/gui/desktops/niri/parts/quickshell/flake.nix @@ -0,0 +1,29 @@ +{ + 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; [ + hello + ]; + }; + } + ); +} |
