This commit is contained in:
Lennart J. Kurzweg (Nx2)
2024-04-25 16:38:06 +02:00
parent 135eea9984
commit 56a5ff0204
6 changed files with 49 additions and 0 deletions

View File

@@ -51,6 +51,8 @@
nxf = "nxfetch";
nn = "nano";
m = "micro";
p = "python";
ipy = "ipython";
c = "codium";
g = "git";
# gst = "git status";
@@ -63,6 +65,7 @@
glg = "git log --graph --abbrev-commit --decorate --format=format:'%C(bold blue)%h%C(reset) - %C(bold green)(%ar)%C(reset) %C(white)%s%C(reset) %C(dim white)- %an%C(reset)%C(auto)%d%C(reset)' --all";
gll = "git log --graph --abbrev-commit --decorate --format=format:'%C(bold blue)%h%C(reset) - %C(bold cyan)%aD%C(reset) %C(bold green)(%ar)%C(reset)%C(auto)%d%C(reset)%n'' %C(white)%s%C(reset) %C(dim white)- %an%C(reset)'";
gmt = "git_monitor";
ns = "nix-shell";
code = "codium";
# ya = "yazi"; # function

View File

@@ -35,6 +35,19 @@ in
gtk4.extraConfig = {
gtk-application-prefer-dark-theme = 1;
};
cursorTheme = {
name = "Catppuccin-Mocha-Pink-Cursors";
package = pkgs.catppuccin-cursors.mochaPink;
size = 20;
};
};
home.pointerCursor = {
gtk.enable = true;
x11.enable = true;
package = pkgs.catppuccin-cursors.mochaPeach;
name = "Catppuccin-Mocha-Pink-Cursors";
size = 20;
};
xdg.configFile = {
@@ -45,6 +58,7 @@ in
dconf = {
enable = true;
settings = {

View File

@@ -0,0 +1,14 @@
{ config, pkgs, ... }:
{
home.packages = with pkgs; [
virt-manager
];
# programs.virt-manager.enable = true; # needs this in virtualization.nix
dconf.settings = {
"org/virt-manager/virt-manager/connections" = {
autoconnect = [ "qemu:///system" ];
uris = [ "qemu:///system" ];
};
};
}