Compare commits
No commits in common. "23d2d63402ee526aaf757abda145bd71dc712457" and "b6a57bce5efdeb0eab6b0698a11dfd2e1bf16221" have entirely different histories.
23d2d63402
...
b6a57bce5e
8 changed files with 8 additions and 12 deletions
|
@ -21,6 +21,5 @@ name | description
|
|||
`starship` | shell prompt
|
||||
`wayland` | has my hyprland config, along with session variables for wayland
|
||||
`wezterm` | my terminal of choice
|
||||
`yazi` | terminal file manager
|
||||
`zathura` | pdf viewer
|
||||
`zellij` | terminal multiplexer
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
};
|
||||
in {
|
||||
imports = [
|
||||
./greetd.nix
|
||||
../../modules/greetd.nix
|
||||
];
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
|
|
|
@ -82,11 +82,8 @@ function Status:name()
|
|||
if h == nil then
|
||||
return ui.Span("")
|
||||
end
|
||||
local linked = ""
|
||||
if h.link_to ~= nil then
|
||||
linked = " -> " .. tostring(h.link_to)
|
||||
end
|
||||
return ui.Span(" " .. h.name .. linked)
|
||||
|
||||
return ui.Span(" " .. h.name)
|
||||
end
|
||||
|
||||
function Status:permissions()
|
||||
|
|
|
@ -25,7 +25,7 @@
|
|||
opener = {
|
||||
text = [
|
||||
{
|
||||
exec = ''hx "$@" '';
|
||||
exec = ''hx "$@"'';
|
||||
for = "linux";
|
||||
}
|
||||
];
|
||||
|
@ -38,7 +38,7 @@
|
|||
];
|
||||
video = [
|
||||
{
|
||||
exec = ''mpv "$@" '';
|
||||
exec = ''mpv "$@"'';
|
||||
block = true;
|
||||
for = "linux";
|
||||
}
|
||||
|
|
|
@ -4,7 +4,6 @@
|
|||
...
|
||||
}: {
|
||||
imports = [
|
||||
./services/swayidle.nix
|
||||
../../home
|
||||
../../home/firefox
|
||||
../../home/ags
|
||||
|
@ -17,6 +16,7 @@
|
|||
../../home/zellij
|
||||
../../home/spotify-player
|
||||
../../home/wayland/hyprland
|
||||
../../modules/swayidle.nix
|
||||
];
|
||||
|
||||
systemd.user.startServices = "sd-switch";
|
||||
|
@ -35,8 +35,6 @@
|
|||
pavucontrol
|
||||
vscodium-fhs
|
||||
obsidian
|
||||
supersonic-wayland
|
||||
jellyfin-mpv-shim
|
||||
unzip
|
||||
unrar
|
||||
p7zip
|
||||
|
|
|
@ -7,10 +7,12 @@ name | description
|
|||
`prometheus` | has default prometheus config for all hosts, along with exporters for select hosts
|
||||
`default` | used for commonly shared modules
|
||||
`fonts` | font handling
|
||||
`greetd` | login manager
|
||||
`nix` | common nix configuration
|
||||
`openssh` | configures openssh options
|
||||
`security` | stolen from [hlissner](https://github.com/hlissner)
|
||||
`sops` | configures sops-nix
|
||||
`swayidle` | idle manager daemon
|
||||
`system` | commonly shared system settings
|
||||
`time` | force sets the time on all systems
|
||||
`users` | defines all hosts users & groups
|
||||
|
|
Loading…
Reference in a new issue