grouping utility apps and fixing alacritty

This commit is contained in:
cnst
2024-07-16 16:37:02 +02:00
parent af25096e79
commit 785c8f06a5
4 changed files with 13 additions and 12 deletions

12
flake.lock generated
View File

@@ -70,11 +70,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1721100106, "lastModified": 1721128566,
"narHash": "sha256-+W47GD9QdHKVyfK/S5G448VbMIfJEUPvdQl0uQn60p0=", "narHash": "sha256-vopB9IQ+0mGHbdovctRB6wjkMQnQmdBZ8cyYSn/zXRQ=",
"owner": "nix-community", "owner": "nix-community",
"repo": "flake-firefox-nightly", "repo": "flake-firefox-nightly",
"rev": "15534c73a87a6c735e5f2077dd3de235ed00ec13", "rev": "84364b1ba41582a86390f88932dc9d8798871050",
"type": "github" "type": "github"
}, },
"original": { "original": {
@@ -340,11 +340,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1720734513, "lastModified": 1721135958,
"narHash": "sha256-neWQ8eNtLTd+YMesb7WjKl1SVCbDyCm46LUgP/g/hdo=", "narHash": "sha256-H548rpPMsn25LDKn1PCFmPxmWlClJJGnvdzImHkqjuY=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "90ae324e2c56af10f20549ab72014804a3064c7f", "rev": "afd2021bedff2de92dfce0e257a3d03ae65c603d",
"type": "github" "type": "github"
}, },
"original": { "original": {

View File

@@ -4,10 +4,6 @@
feh = { feh = {
enable = true; enable = true;
}; };
# archiver
file-roller = {
enable = true;
};
# system information # system information
fastfetch = { fastfetch = {
enable = true; enable = true;
@@ -21,6 +17,7 @@
}; };
}; };
home.packages = with pkgs; [ home.packages = with pkgs; [
file-roller # archiver
gnome-calculator gnome-calculator
nwg-look # GTK settings nwg-look # GTK settings
hyprpicker # Color picker hyprpicker # Color picker

View File

@@ -61,7 +61,10 @@
window = { window = {
dynamic_title = true; dynamic_title = true;
opacity = 0.9; opacity = 0.9;
padding = "{ x = 5, y = 5 }"; padding = {
x = 5;
y = 5;
};
dimensions = { dimensions = {
columns = 120; columns = 120;
lines = 35; lines = 35;

View File

@@ -42,9 +42,10 @@
# workers=<number of logical CPUs> # workers=<number of logical CPUs>
# utmp-helper=/usr/lib/utempter/utempter # When utmp backend is libutempter (Linux) # utmp-helper=/usr/lib/utempter/utempter # When utmp backend is libutempter (Linux)
# utmp-helper=/usr/libexec/ulog-helper # When utmp backend is ulog (FreeBSD) # utmp-helper=/usr/libexec/ulog-helper # When utmp backend is ulog (FreeBSD)
main = { main = {
font = "Input Mono Compressed:size=10"; font = "Input Mono Compressed:size=10";
box-drawings-uses-font-glyphs = "yes";
dpi-aware = "yes"; dpi-aware = "yes";
pad = "3x1"; pad = "3x1";
}; };