hyprpanel created

This commit is contained in:
foglar 2025-04-27 18:21:13 +02:00
parent e6ab9ec33b
commit 49c38752e9
4 changed files with 113 additions and 0 deletions

View File

@ -1,5 +1,27 @@
{
"nodes": {
"ags": {
"inputs": {
"astal": "astal",
"nixpkgs": [
"hyprpanel",
"nixpkgs"
]
},
"locked": {
"lastModified": 1736090999,
"narHash": "sha256-B5CJuHqfJrzPa7tObK0H9669/EClSHpa/P7B9EuvElU=",
"owner": "aylur",
"repo": "ags",
"rev": "5527c3c07d92c11e04e7fd99d58429493dba7e3c",
"type": "github"
},
"original": {
"owner": "aylur",
"repo": "ags",
"type": "github"
}
},
"aquamarine": {
"inputs": {
"hyprutils": [
@ -33,6 +55,28 @@
"type": "github"
}
},
"astal": {
"inputs": {
"nixpkgs": [
"hyprpanel",
"ags",
"nixpkgs"
]
},
"locked": {
"lastModified": 1735172721,
"narHash": "sha256-rtEAwGsHSppnkR3Qg3eRJ6Xh/F84IY9CrBBLzYabalY=",
"owner": "aylur",
"repo": "astal",
"rev": "6c84b64efc736e039a8a10774a4a1bf772c37aa2",
"type": "github"
},
"original": {
"owner": "aylur",
"repo": "astal",
"type": "github"
}
},
"auto-cpufreq": {
"inputs": {
"nixpkgs": [
@ -679,6 +723,27 @@
"type": "github"
}
},
"hyprpanel": {
"inputs": {
"ags": "ags",
"nixpkgs": [
"nixpkgs"
]
},
"locked": {
"lastModified": 1744513377,
"narHash": "sha256-2ocy+qAVxTBmaK8MpAy7mpKIH+DYEzwf+KzXZX83oZ4=",
"owner": "Jas-SinghFSU",
"repo": "HyprPanel",
"rev": "42943b3def85d8787d703778951944c8e791202b",
"type": "github"
},
"original": {
"owner": "Jas-SinghFSU",
"repo": "HyprPanel",
"type": "github"
}
},
"hyprutils": {
"inputs": {
"nixpkgs": [
@ -1166,6 +1231,7 @@
"home-manager": "home-manager",
"home-manager-droid": "home-manager-droid",
"hyprland": "hyprland",
"hyprpanel": "hyprpanel",
"install-script": "install-script",
"nix-ld": "nix-ld",
"nix-mineral": "nix-mineral",

View File

@ -45,6 +45,10 @@
pkgs = import nixpkgs {
inherit system;
overlays = [
inputs.hyprpanel.overlay
];
config = {
allowUnfree = true;
};
@ -62,6 +66,7 @@
nixosConfigurations = {
kogami = nixpkgs.lib.nixosSystem {
inherit system;
specialArgs = {
inherit inputs system pkgs pkgs-stable userSettings;
};
@ -73,6 +78,7 @@
inputs.nix-ld.nixosModules.nix-ld
inputs.sops-nix.nixosModules.sops
inputs.auto-cpufreq.nixosModules.default
{nixpkgs.overlays = [inputs.hyprpanel.overlay];}
];
};
ginoza = nixpkgs.lib.nixosSystem {
@ -174,6 +180,11 @@
inputs.nixpkgs.follows = "nixpkgs";
};
hyprpanel = {
url = "github:Jas-SinghFSU/HyprPanel";
inputs.nixpkgs.follows = "nixpkgs";
};
nix-mineral = {
url = "github:cynicsketch/nix-mineral"; # Refers to the main branch and is updated to the latest commit when you use "nix flake update"
# url = "github:cynicsketch/nix-mineral/v0.1.6-alpha" # Refers to a specific tag and follows that tag until you change it

View File

@ -0,0 +1,14 @@
{
pkgs,
inputs,
...
}:
{
imports = [
inputs.hyprpanel.nixosModules.hyprpanel
];
home.packages = with pkgs; [
hyprpanel
];
}

View File

@ -203,6 +203,27 @@
"[scss]" = {
"editor.defaultFormatter" = "esbenp.prettier-vscode";
};
"tailwindCSS.hovers" = true;
"tailwindCSS.suggestions" = true;
"files.associations" = {
"*.css" = "tailwindcss";
};
"editor.quickSuggestions" = {
"strings" = "on";
};
"tailwindCSS.includeLanguages" = {
"plaintext" = "html";
};
"tailwindCSS.classAttributes" = [
"class"
"className"
"ngClass"
"class:list"
];
};
extensions = with pkgs-stable.vscode-extensions; [
@ -211,6 +232,7 @@
ecmel.vscode-html-css
ms-vscode.live-server
formulahendry.auto-rename-tag
bradlc.vscode-tailwindcss
];
};
})