Compare commits

..

6 commits

Author SHA1 Message Date
23d2d63402
docs: update readme
Some checks are pending
flake check / check (push) Waiting to run
fmt check / check (push) Waiting to run
2024-01-22 03:49:45 -05:00
1cdef8d662
init: show symlinks in ui 2024-01-22 03:49:37 -05:00
96d049445b
openers: fmting 2024-01-22 03:48:51 -05:00
49f9b1504a
wayland: add greetd 2024-01-22 03:48:37 -05:00
e7ba648e1c
tsuki: add swayidle 2024-01-22 03:48:28 -05:00
f564fcf3b4
modules: move swayidle + greetd 2024-01-22 03:47:39 -05:00
8 changed files with 12 additions and 8 deletions

View file

@ -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

View file

@ -15,7 +15,7 @@
};
in {
imports = [
../../modules/greetd.nix
./greetd.nix
];
environment.systemPackages = with pkgs; [

View file

@ -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()

View file

@ -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

View file

@ -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