changed date

This commit is contained in:
biscuit
2025-06-04 14:32:51 -05:00
parent 1fb2d40aa8
commit a92159168c
5 changed files with 32 additions and 20 deletions
Generated
+4 -4
View File
@@ -376,11 +376,11 @@
"rust-overlay": "rust-overlay"
},
"locked": {
"lastModified": 1748973123,
"narHash": "sha256-NA+RsavvmmJdHSqG9WmwFiIFAGlR1WwL689ZH231E0Q=",
"lastModified": 1748990637,
"narHash": "sha256-uZhqa7DqjTSnbbwbpQJscbLMb8b7WDQXSTZCw6/LwPE=",
"ref": "refs/heads/master",
"rev": "847d1291cadd8d6ee120650c386f33308e971826",
"revCount": 57,
"rev": "7e425761c9c50b688337ca26c80e74ee7bf62a01",
"revCount": 58,
"type": "git",
"url": "https://git.sakamoto.dev/kenji/nix-neovim.git"
},
+7 -1
View File
@@ -48,7 +48,13 @@
desktop = home-manager.lib.homeManagerConfiguration {
pkgs = import nixpkgs {
inherit system;
overlays = [];
overlays = [
# (final: prev: {
# ags_1 = prev.ags_1.overrideAttrs (old: {
# buildInputs = old.buildInputs ++ [pkgs.libdbusmenu-gtk3];
# });
# })
];
};
extraSpecialArgs = args;
modules = [./home/desktop/home.nix];
+1 -1
View File
@@ -14,7 +14,7 @@
ll = "ls -l";
upd = "sudo nixos-rebuild switch --flake ~/Nixos/#desktop";
hupd = "home-manager switch --flake ~/Nixos/#desktop";
agu = "pkill gjs & ags run ~/Nixos/pkgs/ags/biscuit/app.ts &";
agu = "pkill gjs & ags run ~/Nixos/pkgs/ags/biscuit/app.ts & disown (jobs -p) &";
neo = "nix run github:fred-drake/neovim#";
};
+1 -1
View File
@@ -136,7 +136,7 @@ function FocusedClient() {
</box>
}
function Time({ format = "%H:%M %a %b %e" }) {
function Time({ format = "%H:%M %a %b %d" }) {
const time = Variable<string>("").poll(1000, () =>
GLib.DateTime.new_now_local().format(format)!)
+19 -13
View File
@@ -1,5 +1,10 @@
{ inputs, pkgs, system, ... }: {
imports = [ inputs.ags.homeManagerModules.default ];
{
inputs,
pkgs,
system,
...
}: {
imports = [inputs.ags.homeManagerModules.default];
programs.ags = {
enable = true;
@@ -7,16 +12,17 @@
extraPackages = let
agsPkgs = inputs.ags.packages.${system};
in with pkgs; [
agsPkgs.battery
agsPkgs.hyprland
agsPkgs.mpris
agsPkgs.wireplumber
agsPkgs.notifd
agsPkgs.apps
agsPkgs.network
agsPkgs.tray
fzf
];
in
with pkgs; [
agsPkgs.battery
agsPkgs.hyprland
agsPkgs.mpris
agsPkgs.wireplumber
agsPkgs.notifd
agsPkgs.apps
agsPkgs.network
agsPkgs.tray
fzf
];
};
}