more home-manager
This commit is contained in:
parent
622c443a60
commit
014f391d4b
2 changed files with 43 additions and 1 deletions
|
|
@ -85,9 +85,10 @@
|
||||||
brave
|
brave
|
||||||
tealdeer
|
tealdeer
|
||||||
alsa-utils
|
alsa-utils
|
||||||
tofi
|
wofi
|
||||||
waybar
|
waybar
|
||||||
swaylock-effects
|
swaylock-effects
|
||||||
|
swayidle
|
||||||
bitwarden-cli
|
bitwarden-cli
|
||||||
bitwarden
|
bitwarden
|
||||||
pcmanfm
|
pcmanfm
|
||||||
|
|
|
||||||
|
|
@ -22,6 +22,47 @@
|
||||||
gimp
|
gimp
|
||||||
];
|
];
|
||||||
|
|
||||||
|
programs.git = {
|
||||||
|
enable = true;
|
||||||
|
userName = "tristan";
|
||||||
|
userEmail = "tristan@tristans.cloud";
|
||||||
|
aliases = {
|
||||||
|
graph = "log --oneline --all --graph";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
programs.swaylock.settings = {
|
||||||
|
clock = true;
|
||||||
|
screenshots = true;
|
||||||
|
effect-scale = 0.5;
|
||||||
|
effect-blur = "10x10";
|
||||||
|
};
|
||||||
|
|
||||||
|
services.swayidle.enable = true;
|
||||||
|
services.swayidle.events = [
|
||||||
|
{ event = "before-sleep"; command = "${pkgs.swaylock}/bin/swaylock"; }
|
||||||
|
{ event = "lock"; command = "lock"; }
|
||||||
|
];
|
||||||
|
|
||||||
|
programs.waybar.enable = true;
|
||||||
|
programs.waybar.settings = {
|
||||||
|
mainBar = {
|
||||||
|
layer = "top";
|
||||||
|
position = "top";
|
||||||
|
height = 30;
|
||||||
|
modules-right = [ "mpd" "pulseaudio" "clock" "tray" ];
|
||||||
|
clock = {
|
||||||
|
format = "📅 {:%a %b-%d %I:%M %p}";
|
||||||
|
};
|
||||||
|
pulseaudio = {
|
||||||
|
format-muted = "🔇 {volume}%";
|
||||||
|
format = "{icon} {volume}";
|
||||||
|
format-icons.default = ["🔈" "🔉" "🔊"];
|
||||||
|
on-click = "pavucontrol";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
gtk = {
|
gtk = {
|
||||||
enable = true;
|
enable = true;
|
||||||
theme = {
|
theme = {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue