Merge branch 'master' of https://git.atagen.co/atagen/nix
This commit is contained in:
commit
ba40b01e17
8 changed files with 30 additions and 44 deletions
|
@ -7,6 +7,7 @@ let
|
|||
src = builtins.fetchTarball "https://github.com/hyprwm/Hyprland/archive/master.tar.gz";
|
||||
}).defaultNix;
|
||||
|
||||
|
||||
wlogout_style_base = dots/wlogout/style.css;
|
||||
wlogout_style = pkgs.runCommandLocal "wlogout_style_base" {wlogpath = lib.strings.escape ["/"] "${pkgs.wlogout}";} ''
|
||||
cp ${wlogout_style_base} $out
|
||||
|
@ -19,7 +20,6 @@ in {
|
|||
imports = [
|
||||
hyprland.homeManagerModules.default
|
||||
../foreign/dotfiles/home/programs/eww/default.nix
|
||||
../foreign/dotfiles/modules/regreet.nix
|
||||
];
|
||||
|
||||
nixpkgs.overlays = [
|
||||
|
@ -35,6 +35,7 @@ in {
|
|||
colors = builtins.readFile dots/eww/colors.scss;
|
||||
};
|
||||
|
||||
|
||||
home.username = "bolt";
|
||||
home.homeDirectory = "/home/bolt";
|
||||
|
||||
|
@ -56,6 +57,7 @@ in {
|
|||
swayidle
|
||||
swaynotificationcenter
|
||||
swayosd
|
||||
waylock
|
||||
|
||||
playerctl
|
||||
];
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
exec-once = eww open bar
|
||||
exec-once = swayidle -w timeout 600 'systemctl suspend' after-resume 'hyprctl dispatch dpms on && eww open bar'
|
||||
exec-once = swayidle -w timeout 300 'waylock'
|
||||
exec-once = swayidle -w timeout 600 'systemctl suspend' after-resume 'eww open bar'
|
||||
exec-once = ckb-next -c -b
|
||||
exec-once = swaybg -i $HOME/Downloads/fantastyland-dark.png -m fill
|
||||
exec-once = xrdb -l ~/.Xresources
|
||||
|
|
|
@ -1,24 +1,36 @@
|
|||
{
|
||||
"label" : "lock",
|
||||
"action" : "waylock",
|
||||
"text" : "Lock",
|
||||
"keybind" : "l"
|
||||
}
|
||||
{
|
||||
"label" : "logout",
|
||||
"action" : "loginctl terminate-user $USER",
|
||||
"text" : "Logout",
|
||||
"keybind" : "e"
|
||||
}
|
||||
{
|
||||
"label" : "shutdown",
|
||||
"action" : "systemctl poweroff",
|
||||
"text" : "Shutdown",
|
||||
"keybind" : "d"
|
||||
}
|
||||
{
|
||||
"label" : "suspend",
|
||||
"action" : "systemctl suspend",
|
||||
"text" : "Suspend",
|
||||
"keybind" : "s"
|
||||
}
|
||||
{
|
||||
"label" : "shutdown",
|
||||
"action" : "systemctl poweroff",
|
||||
"text" : "Shutdown",
|
||||
"keybind" : "d"
|
||||
}
|
||||
{
|
||||
"label" : "reboot",
|
||||
"action" : "systemctl reboot",
|
||||
"text" : "Reboot",
|
||||
"keybind" : "r"
|
||||
}
|
||||
{
|
||||
"label" : "hibernate",
|
||||
"action" : "systemctl hibernate",
|
||||
"text" : "Hibernate",
|
||||
"keybind" : "h"
|
||||
}
|
||||
|
|
|
@ -39,7 +39,7 @@ in
|
|||
lazygit
|
||||
fzf
|
||||
|
||||
# kdeconnect # maybe once i get an android
|
||||
kdeconnect
|
||||
keepassxc
|
||||
|
||||
direnv
|
||||
|
@ -51,19 +51,12 @@ in
|
|||
meslo-lgs-nf
|
||||
|
||||
# libreoffice-qt
|
||||
|
||||
libsForQt5.ark
|
||||
libsForQt5.qtstyleplugin-kvantum
|
||||
libsForQt5.bismuth
|
||||
|
||||
|
||||
gtk-engine-murrine
|
||||
|
||||
plasma-browser-integration
|
||||
|
||||
(callPackage ./homepkgs/git-credential-keepassxc.nix { })
|
||||
(callPackage ./homepkgs/culr.nix { })
|
||||
# (callPackage ./homepkgs/glpaper.nix { })
|
||||
|
||||
];
|
||||
|
||||
|
@ -162,10 +155,10 @@ in
|
|||
enable = true;
|
||||
};
|
||||
|
||||
services.kdeconnect = {
|
||||
enable = true;
|
||||
indicator = true;
|
||||
};
|
||||
# services.kdeconnect = {
|
||||
# enable = true;
|
||||
# indicator = true;
|
||||
# };
|
||||
|
||||
programs.kitty = {
|
||||
enable = true;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue