Compare commits
6 commits
b6a57bce5e
...
23d2d63402
Author | SHA1 | Date | |
---|---|---|---|
23d2d63402 | |||
1cdef8d662 | |||
96d049445b | |||
49f9b1504a | |||
e7ba648e1c | |||
f564fcf3b4 |
8 changed files with 12 additions and 8 deletions
|
@ -21,5 +21,6 @@ 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 = [
|
||||
../../modules/greetd.nix
|
||||
./greetd.nix
|
||||
];
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
|
|
|
@ -82,8 +82,11 @@ function Status:name()
|
|||
if h == nil then
|
||||
return ui.Span("")
|
||||
end
|
||||
|
||||
return ui.Span(" " .. h.name)
|
||||
local linked = ""
|
||||
if h.link_to ~= nil then
|
||||
linked = " -> " .. tostring(h.link_to)
|
||||
end
|
||||
return ui.Span(" " .. h.name .. linked)
|
||||
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,6 +4,7 @@
|
|||
...
|
||||
}: {
|
||||
imports = [
|
||||
./services/swayidle.nix
|
||||
../../home
|
||||
../../home/firefox
|
||||
../../home/ags
|
||||
|
@ -16,7 +17,6 @@
|
|||
../../home/zellij
|
||||
../../home/spotify-player
|
||||
../../home/wayland/hyprland
|
||||
../../modules/swayidle.nix
|
||||
];
|
||||
|
||||
systemd.user.startServices = "sd-switch";
|
||||
|
@ -35,6 +35,8 @@
|
|||
pavucontrol
|
||||
vscodium-fhs
|
||||
obsidian
|
||||
supersonic-wayland
|
||||
jellyfin-mpv-shim
|
||||
unzip
|
||||
unrar
|
||||
p7zip
|
||||
|
|
|
@ -7,12 +7,10 @@ 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