mirror of
https://github.com/tomasriveral/nixos.git
synced 2026-08-12 02:28:37 +02:00
added batsignal
This commit is contained in:
@@ -40,6 +40,9 @@
|
|||||||
# Enable the GNOME Desktop Environment.
|
# Enable the GNOME Desktop Environment.
|
||||||
# services.displayManager.gdm.enable = true;
|
# services.displayManager.gdm.enable = true;
|
||||||
# services.desktopManager.gnome.enable = true;
|
# services.desktopManager.gnome.enable = true;
|
||||||
|
# we dont use gnome but some utils yes -> see pckgs
|
||||||
|
|
||||||
|
|
||||||
# enable hyprland WM
|
# enable hyprland WM
|
||||||
programs.hyprland = {
|
programs.hyprland = {
|
||||||
enable = true;
|
enable = true;
|
||||||
@@ -136,7 +139,16 @@ services.upower.enable = true;
|
|||||||
cliphist # Wayland clipboard manager
|
cliphist # Wayland clipboard manager
|
||||||
wl-clipboard # cli copy/past utilities for Wayland
|
wl-clipboard # cli copy/past utilities for Wayland
|
||||||
jp # lightweight and flexible cli JSON parser
|
jp # lightweight and flexible cli JSON parser
|
||||||
];
|
notepad-next
|
||||||
|
#we need to install gnome and kde utils individually as we dont use gnome
|
||||||
|
gnome-calculator
|
||||||
|
snapshot
|
||||||
|
gnome-characters
|
||||||
|
gnome-disk-utility
|
||||||
|
kdePackages.okular
|
||||||
|
nautilus
|
||||||
|
gnome-font-viewer
|
||||||
|
];
|
||||||
|
|
||||||
# fonts
|
# fonts
|
||||||
fonts.packages = with pkgs; [
|
fonts.packages = with pkgs; [
|
||||||
|
|||||||
@@ -14,6 +14,7 @@ imports = [
|
|||||||
../../modules/home-manager/hyprland.nix
|
../../modules/home-manager/hyprland.nix
|
||||||
../../modules/home-manager/wlogout.nix # logout utility
|
../../modules/home-manager/wlogout.nix # logout utility
|
||||||
../../modules/home-manager/rofi.nix # launcher and keybindings helper
|
../../modules/home-manager/rofi.nix # launcher and keybindings helper
|
||||||
|
../../modules/home-manager/batsignal.nix # notify daemon for battery
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
||||||
@@ -35,7 +36,7 @@ home.stateVersion = "25.11"; # Please read the comment before changing.
|
|||||||
# environment.
|
# environment.
|
||||||
home.packages = [
|
home.packages = [
|
||||||
#scritps
|
#scritps
|
||||||
(pkgs.callPackage ./modules/scripts/dontkillsteam.nix {})
|
(pkgs.callPackage ../../modules/scripts/dontkillsteam.nix {})
|
||||||
|
|
||||||
# # Adds the 'hello' command to your environment. It prints a friendly
|
# # Adds the 'hello' command to your environment. It prints a friendly
|
||||||
# # "Hello, world!" when run.
|
# # "Hello, world!" when run.
|
||||||
|
|||||||
@@ -0,0 +1,7 @@
|
|||||||
|
{ config, pkgs, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
services.batsignal = {
|
||||||
|
enable = true;
|
||||||
|
};
|
||||||
|
}
|
||||||
@@ -13,7 +13,7 @@
|
|||||||
"$mod" = "SUPER";
|
"$mod" = "SUPER";
|
||||||
"$term" = "kitty";
|
"$term" = "kitty";
|
||||||
"$editor" = "nvim";
|
"$editor" = "nvim";
|
||||||
"$file" = "nautilius";
|
"$file" = "nautilus";
|
||||||
"$browser" = "firefox"; # change to librewolf later
|
"$browser" = "firefox"; # change to librewolf later
|
||||||
# ▄▀█ █▄░█ █ █▀▄▀█ ▄▀█ ▀█▀ █ █▀█ █▄░█
|
# ▄▀█ █▄░█ █ █▀▄▀█ ▄▀█ ▀█▀ █ █▀█ █▄░█
|
||||||
# █▀█ █░▀█ █ █░▀░█ █▀█ ░█░ █ █▄█ █░▀█
|
# █▀█ █░▀█ █ █░▀░█ █▀█ ░█░ █ █▄█ █░▀█
|
||||||
@@ -94,7 +94,7 @@
|
|||||||
"$mod, E, exec, $file"
|
"$mod, E, exec, $file"
|
||||||
"$mod, F, exec, $browser"
|
"$mod, F, exec, $browser"
|
||||||
"$mod+Shift, A, exec, rofi -show drun"
|
"$mod+Shift, A, exec, rofi -show drun"
|
||||||
|
"$mod, Q, exec, custom-dontkillsteam"
|
||||||
#plugins keybindings
|
#plugins keybindings
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|||||||
@@ -3,5 +3,6 @@
|
|||||||
{
|
{
|
||||||
programs.rofi = {
|
programs.rofi = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
theme = "gruvbox-dark-hard";
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user