update lockfile
This commit is contained in:
parent
8adc4a80c1
commit
4b40e34532
18 changed files with 179 additions and 288 deletions
|
|
@ -34,12 +34,12 @@
|
|||
};
|
||||
"custom/miao-battery-percentage" = {
|
||||
return-type = "json";
|
||||
exec = "${lib.getExe self.packages.${pkgs.system}.miao-battery-percentage}";
|
||||
exec = "${lib.getExe self.packages.${pkgs.stdenv.hostPlatform.system}.miao-battery-percentage}";
|
||||
restart-interval = "60";
|
||||
};
|
||||
"custom/keyboard-state" = {
|
||||
return-type = "json";
|
||||
exec = "${lib.getExe self.packages.${pkgs.system}.keyboard-state}";
|
||||
exec = "${lib.getExe self.packages.${pkgs.stdenv.hostPlatform.system}.keyboard-state}";
|
||||
restart-interval = "60";
|
||||
};
|
||||
clock = {
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
{pkgs, ...}: {
|
||||
home.packages = with pkgs; [nil nixd alejandra nixfmt-rfc-style];
|
||||
home.packages = with pkgs; [nil nixd alejandra nixfmt];
|
||||
}
|
||||
|
|
|
|||
|
|
@ -31,7 +31,7 @@
|
|||
};
|
||||
profiles.xun = {
|
||||
# extensions.force = true;
|
||||
extensions.packages = with inputs.firefox-addons.packages.${pkgs.system}; [
|
||||
extensions.packages = with inputs.firefox-addons.packages.${pkgs.stdenv.hostPlatform.system}; [
|
||||
ublock-origin
|
||||
# (lib.mkIf (config.xun.desktop.colorscheme == "dark") darkreader)
|
||||
darkreader
|
||||
|
|
|
|||
|
|
@ -3,6 +3,6 @@
|
|||
inputs,
|
||||
...
|
||||
}: {
|
||||
home.packages = [inputs.nvim-config.packages.${pkgs.system}.default];
|
||||
home.packages = [inputs.nvim-config.packages.${pkgs.stdenv.hostPlatform.system}.default];
|
||||
home.sessionVariables.EDITOR = "nvim";
|
||||
}
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@
|
|||
pkgs,
|
||||
...
|
||||
}: {
|
||||
home.packages = [inputs.wayland-appusage.packages.${pkgs.system}.appusage];
|
||||
home.packages = [inputs.wayland-appusage.packages.${pkgs.stdenv.hostPlatform.system}.appusage];
|
||||
|
||||
systemd.user.services.appusage = {
|
||||
Unit = {
|
||||
|
|
@ -16,7 +16,7 @@
|
|||
Service = {
|
||||
Type = "simple";
|
||||
Restart = "on-failure";
|
||||
ExecStart = "${inputs.wayland-appusage.packages.${pkgs.system}.appusage-daemon}/bin/appusage-daemon";
|
||||
ExecStart = "${inputs.wayland-appusage.packages.${pkgs.stdenv.hostPlatform.system}.appusage-daemon}/bin/appusage-daemon";
|
||||
RestartSec = "5s";
|
||||
};
|
||||
};
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@
|
|||
];
|
||||
|
||||
stylix = {
|
||||
iconTheme = {
|
||||
icons = {
|
||||
enable = true;
|
||||
package = pkgs.morewaita-icon-theme;
|
||||
dark = "MoreWaita";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue