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

View File

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

View File

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

View File

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