feat: modified AGS bar styling
This commit is contained in:
parent
a88e7c28a5
commit
9fec340586
13 changed files with 238 additions and 184 deletions
|
@ -17,11 +17,12 @@
|
|||
./hypr
|
||||
./shells
|
||||
../../common/variables.nix
|
||||
#./mako.nix
|
||||
./mako.nix
|
||||
./wechat
|
||||
./editors.nix
|
||||
./gtk.nix
|
||||
./ags
|
||||
./xdg.nix
|
||||
];
|
||||
|
||||
nixpkgs = {
|
||||
|
@ -57,18 +58,6 @@
|
|||
# copy wallpaper from assets
|
||||
file = {"wallpaper.png".source = ./assets/gruvbox-wallpaper.png;};
|
||||
};
|
||||
#programs.neovim = {
|
||||
# enable = true;
|
||||
# viAlias = true;
|
||||
# vimAlias = true;
|
||||
# extraConfig = ''
|
||||
# set number
|
||||
# '';
|
||||
#};
|
||||
programs.thunderbird = {
|
||||
enable = true;
|
||||
profiles.default = {isDefault = true;};
|
||||
};
|
||||
home.packages = with pkgs; [
|
||||
protonvpn-gui
|
||||
devenv
|
||||
|
@ -80,34 +69,48 @@
|
|||
qq
|
||||
libreoffice
|
||||
discord
|
||||
zathura
|
||||
#zathura
|
||||
kdePackages.okular
|
||||
shotwell
|
||||
mpv
|
||||
kdenlive
|
||||
obsidian
|
||||
pcmanfm
|
||||
udiskie
|
||||
android-file-transfer
|
||||
usbutils
|
||||
mtpfs
|
||||
teams-for-linux
|
||||
sxiv
|
||||
];
|
||||
myAutostartCommands = [
|
||||
"${pkgs.clash-verge-rev}/bin/clash-verge"
|
||||
"${pkgs.firefox}/bin/firefox"
|
||||
"${pkgs.thunderbird}/bin/thunderbird"
|
||||
];
|
||||
programs.git = {
|
||||
enable = true;
|
||||
package = pkgs.gitFull;
|
||||
userName = config.myDisplayName;
|
||||
userEmail = config.myEmail;
|
||||
extraConfig = {
|
||||
push.autoSetupRemote = true;
|
||||
commit.gpgsign = true;
|
||||
gpg.format = "ssh";
|
||||
gpg.ssh.allowedSignersFile = "/home/${config.myUserName}/.ssh/allowed_signers";
|
||||
user.signingkey = "/home/${config.myUserName}/.ssh/id_ed25519.pub";
|
||||
credential.helper = "libsecret";
|
||||
|
||||
programs = {
|
||||
home-manager.enable = true;
|
||||
firefox.enable = true;
|
||||
thunderbird = {
|
||||
enable = true;
|
||||
profiles.default = {isDefault = true;};
|
||||
};
|
||||
git = {
|
||||
enable = true;
|
||||
package = pkgs.gitFull;
|
||||
userName = config.myDisplayName;
|
||||
userEmail = config.myEmail;
|
||||
extraConfig = {
|
||||
push.autoSetupRemote = true;
|
||||
commit.gpgsign = true;
|
||||
gpg.format = "ssh";
|
||||
gpg.ssh.allowedSignersFile = "/home/${config.myUserName}/.ssh/allowed_signers";
|
||||
user.signingkey = "/home/${config.myUserName}/.ssh/id_ed25519.pub";
|
||||
credential.helper = "libsecret";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
programs.home-manager.enable = true;
|
||||
programs.firefox.enable = true;
|
||||
# Nicely reload system units when changing configs
|
||||
systemd.user.startServices = "sd-switch";
|
||||
services.kanshi = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue