non important commit

This commit is contained in:
benstrb 2026-02-28 14:51:24 +01:00
parent f986a05562
commit 7e94242adc
10 changed files with 64 additions and 41 deletions

View file

@ -1 +0,0 @@
/nix/store/8pqk0a2vvk97hxpk6p3h18lq9zsvqagi-source

View file

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

View file

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

View file

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

View file

@ -1 +1 @@
/nix/store/gqmhznl1dy1xnzzxqr6nl0mlqn6mm7rf-nix-shell-env
/nix/store/aj1iyz6dgmywgxl880372d7xzf94yjb7-nix-shell-env

View file

@ -0,0 +1,27 @@
{
"nodes": {
"nixpkgs": {
"locked": {
"lastModified": 1771848320,
"narHash": "sha256-0MAd+0mun3K/Ns8JATeHT1sX28faLII5hVLq0L3BdZU=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "2fc6539b481e1d2569f25f8799236694180c0993",
"type": "github"
},
"original": {
"owner": "nixos",
"ref": "nixos-unstable",
"repo": "nixpkgs",
"type": "github"
}
},
"root": {
"inputs": {
"nixpkgs": "nixpkgs"
}
}
},
"root": "root",
"version": 7
}

View file

@ -3,14 +3,12 @@
outputs = {nixpkgs, ...}: let
pkgs = nixpkgs.legacyPackages.x86_64-linux;
qmlPackages = [
pkgs.quickshell
pkgs.kdePackages.qtdeclarative
];
in {
devShells.x86_64-linux.default = pkgs.mkShell {
packages = qmlPackages;
QML_IMPORT_PATH = pkgs.lib.makeSearchPathOutput "lib" "lib/qt-6/qml" qmlPackages;
packages = [
pkgs.quickshell
pkgs.kdePackages.qtdeclarative
];
};
};
}

View file

@ -0,0 +1 @@
/run/user/1000/quickshell/vfs/979c82aa12f7c2ec5275061b8383d7c4/.qmlls.ini

View file

@ -4,14 +4,13 @@ import QtQuick
PanelWindow {
anchors.top: true
anchors.left: true
anchors.right: true
implicitHeight: 30
color: "#1a1b26"
Text {
anchors.centerIn: parent
text: "haayaa"
color: "#ff00ff"
font.pixelSize: 18
text: "My First Bar"
color: "#a9b1d6"
font.pixelSize: 14
}
}