-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflake.nix
More file actions
44 lines (40 loc) · 1.08 KB
/
Copy pathflake.nix
File metadata and controls
44 lines (40 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
description = "Wayland Dashboard.";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
quickshell = {
url = "git+https://git.outfoxxed.me/outfoxxed/quickshell";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = { nixpkgs, ... }: let
system = "x86_64-linux";
pkgs = nixpkgs.legacyPackages.${system};
# forAllSystems = fn:
# nixpkgs.lib.genAttrs nixpkgs.lib.platforms.linux (
# system: fn nixpkgs.legacyPackages.${system}
# );
in {
# Dev Shell
devShells.${system}.default = pkgs.mkShell {
packages = [
pkgs.quickshell
pkgs.kdePackages.qtdeclarative
pkgs.nerd-fonts.symbols-only
pkgs.nerd-fonts.blex-mono
];
# shellHook = ''
# echo "Quickshell `qs --version`"
# '';
};
# Derivation
# packages.${pkgs.system}.default = pkgs.stdenv.mkDerivation {
# name = "overway";
# buildCommand = ''
# echo '#!/bin/bash' > $out
# echo 'echo "Hello, World!"' >> $out
# chmod +x $out
# '';
# };
};
}