mirror of
https://github.com/callumio/nixfiles.git
synced 2025-12-17 03:29:20 +00:00
This commit is contained in:
parent
b86629718d
commit
3c5f85bbb1
4 changed files with 10 additions and 6 deletions
|
|
@ -10,8 +10,8 @@
|
|||
chat = getProgFor "discord";
|
||||
media = getProgFor "spotify";
|
||||
terminal = getProgFor "alacritty";
|
||||
runner = getProgFor "rofi";
|
||||
rofi-rbw = getProgFor "rofi-rbw-wayland";
|
||||
runner = getProgFor' "rofi-wayland" "rofi";
|
||||
rofi-rbw = getProgFor' "rofi-rbw-wayland" "rofi-rbw";
|
||||
tmux = getProgFor "tmux";
|
||||
slurp = getProgFor "slurp";
|
||||
grim = getProgFor "grim";
|
||||
|
|
|
|||
|
|
@ -47,10 +47,7 @@
|
|||
sessionVariables = {NIXOS_OZONE_WL = "1";};
|
||||
|
||||
shells = with pkgs; [fish];
|
||||
|
||||
# etc."greetd/environments".text = ''
|
||||
# hyprland
|
||||
# '';
|
||||
};
|
||||
|
||||
fonts.packages = with pkgs; [nerdfonts meslo-lgs-nf];
|
||||
}
|
||||
|
|
|
|||
|
|
@ -2,6 +2,7 @@
|
|||
imports = [
|
||||
./hardware-configuration.nix
|
||||
./configuration.nix
|
||||
./quassel.nix
|
||||
./fail2ban.nix
|
||||
./containers.nix
|
||||
./networking.nix
|
||||
|
|
|
|||
6
hosts/hermes/quassel.nix
Normal file
6
hosts/hermes/quassel.nix
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{...}: {
|
||||
services.quassel = {
|
||||
enable = true;
|
||||
interfaces = ["0.0.0.0"];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue