What changed here was: - I updated the lock file - I added ZNC to my services - I moved my services to a new directory - I renamed my user to arturm - I renamed my system to cityseventeen - I moved to en_US.UTF-8 - I switched to using Rose Pine - I added a Mako option - Some refactoring where it was needed These are all changes I forgot to commit, I had intentions of commiting them but I didn't until now. Oops!
55 lines
1.3 KiB
Nix
55 lines
1.3 KiB
Nix
{
|
|
inputs,
|
|
pkgs,
|
|
...
|
|
}:
|
|
{
|
|
alqueva.users.arturm = {
|
|
shell = pkgs.zsh;
|
|
tmpfiles = [
|
|
"L+ %h/.config/qutebrowser/config.py - - - - ${./configs/qutebrowser/config.py}"
|
|
"L+ %h/.config/qutebrowser/theme - - - - ${./configs/qutebrowser/theme}"
|
|
"L+ %h/.config/kanshi/ - - - - ${./configs/kanshi}"
|
|
"L+ %h/.config/mako/ - - - - ${./configs/mako}"
|
|
"L+ %h/.config/niri/ - - - - ${./configs/niri}"
|
|
"L+ %h/.config/foot - - - - ${./configs/foot}"
|
|
"L+ %h/.config/fuzzel - - - - ${./configs/fuzzel}"
|
|
"L+ %h/.config/waybar - - - - ${./configs/waybar}"
|
|
"L+ %h/.face.icon - - - - ${./.face.icon}"
|
|
"L+ %h/.gitconfig - - - - ${./configs/git/gitconfig}"
|
|
# "L+ %h/.config/vesktop/settings/quickCss.css - - - - ${./configs/vesktop/quickCss.css}"
|
|
];
|
|
packages = builtins.attrValues {
|
|
inherit (pkgs)
|
|
eww
|
|
wget
|
|
mpv
|
|
imv
|
|
amberol
|
|
fractal
|
|
nicotine-plus-libadwaita
|
|
nautilus
|
|
librewolf
|
|
playerctl
|
|
evolution
|
|
qutebrowser
|
|
gh
|
|
fuzzel
|
|
foot
|
|
signal-desktop
|
|
dino
|
|
polari
|
|
# vesktop
|
|
;
|
|
inherit (inputs.hetch.packages.${pkgs.system}) hetch;
|
|
};
|
|
groups = [
|
|
"wheel"
|
|
"video"
|
|
"audio"
|
|
"networkmanager"
|
|
"input"
|
|
"libvirtd"
|
|
];
|
|
};
|
|
}
|