wip
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
home.packages = with pkgs; [
|
||||
esphome
|
||||
clang-tools
|
||||
];
|
||||
}
|
||||
@@ -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"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user