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";
|
chat = getProgFor "discord";
|
||||||
media = getProgFor "spotify";
|
media = getProgFor "spotify";
|
||||||
terminal = getProgFor "alacritty";
|
terminal = getProgFor "alacritty";
|
||||||
runner = getProgFor "rofi";
|
runner = getProgFor' "rofi-wayland" "rofi";
|
||||||
rofi-rbw = getProgFor "rofi-rbw-wayland";
|
rofi-rbw = getProgFor' "rofi-rbw-wayland" "rofi-rbw";
|
||||||
tmux = getProgFor "tmux";
|
tmux = getProgFor "tmux";
|
||||||
slurp = getProgFor "slurp";
|
slurp = getProgFor "slurp";
|
||||||
grim = getProgFor "grim";
|
grim = getProgFor "grim";
|
||||||
|
|
|
||||||
|
|
@ -47,10 +47,7 @@
|
||||||
sessionVariables = {NIXOS_OZONE_WL = "1";};
|
sessionVariables = {NIXOS_OZONE_WL = "1";};
|
||||||
|
|
||||||
shells = with pkgs; [fish];
|
shells = with pkgs; [fish];
|
||||||
|
|
||||||
# etc."greetd/environments".text = ''
|
|
||||||
# hyprland
|
|
||||||
# '';
|
|
||||||
};
|
};
|
||||||
|
|
||||||
fonts.packages = with pkgs; [nerdfonts meslo-lgs-nf];
|
fonts.packages = with pkgs; [nerdfonts meslo-lgs-nf];
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -2,6 +2,7 @@
|
||||||
imports = [
|
imports = [
|
||||||
./hardware-configuration.nix
|
./hardware-configuration.nix
|
||||||
./configuration.nix
|
./configuration.nix
|
||||||
|
./quassel.nix
|
||||||
./fail2ban.nix
|
./fail2ban.nix
|
||||||
./containers.nix
|
./containers.nix
|
||||||
./networking.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