This commit is contained in:
Miguel Palhas
2025-06-15 09:26:50 +01:00
parent e14bb4de17
commit bc8a219f16
9 changed files with 60 additions and 4 deletions
+7
View File
@@ -0,0 +1,7 @@
{ pkgs, ... }:
{
home.packages = with pkgs; [
esphome
clang-tools
];
}
+1
View File
@@ -10,6 +10,7 @@
./solidity.nix
./dev.nix
./aider.nix
./cpp.nix
];
programs = {
@@ -8,6 +8,7 @@ in
./dunst.nix
./cursor.nix
./hyprpanel.nix
./quickshell.nix
];
home.packages = with pkgs; [
@@ -0,0 +1,8 @@
{ config, pkgs, ... }:
{
home.packages = with pkgs; [
quickshell
];
xdg.configFile."quickshell".source = ./quickshell;
}
@@ -0,0 +1,17 @@
import Quickshell
import QtQuick
PanelWindow {
anchors {
top: true
left: true
right: true
}
implicitHeight: 30
Text {
anchors.centerIn: parent
text: "hello world"
}
}