{flake,apps}: update flake; swap out some apps
This commit is contained in:
parent
717a0b8a21
commit
f5b3a4f3e2
8 changed files with 23 additions and 35 deletions
25
flake.lock
generated
25
flake.lock
generated
|
@ -247,22 +247,6 @@
|
||||||
"type": "github"
|
"type": "github"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"gimp-nixpkgs": {
|
|
||||||
"locked": {
|
|
||||||
"lastModified": 1743550502,
|
|
||||||
"narHash": "sha256-+n8Odooi32fHtpW0MbbP0sXH2UYYGl3C2QuOiuLps2c=",
|
|
||||||
"owner": "jtojnar",
|
|
||||||
"repo": "nixpkgs",
|
|
||||||
"rev": "fa4992dd39f48279eb33db114c623abccae09384",
|
|
||||||
"type": "github"
|
|
||||||
},
|
|
||||||
"original": {
|
|
||||||
"owner": "jtojnar",
|
|
||||||
"ref": "gimp-meson",
|
|
||||||
"repo": "nixpkgs",
|
|
||||||
"type": "github"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"git-hooks-nix": {
|
"git-hooks-nix": {
|
||||||
"inputs": {
|
"inputs": {
|
||||||
"flake-compat": "flake-compat",
|
"flake-compat": "flake-compat",
|
||||||
|
@ -628,11 +612,11 @@
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1744692432,
|
"lastModified": 1744832596,
|
||||||
"narHash": "sha256-HIapfUjS1n3vqLXcVrOKTKkp3AM3L/kySWnDajX+kn8=",
|
"narHash": "sha256-R/OSvaIpjmWjnoAZF1UUwMI2XSnHmg/mJ0orN4ub7V8=",
|
||||||
"ref": "main",
|
"ref": "main",
|
||||||
"rev": "5d02a9c26a22b97966f98c00db4d090c7391f48d",
|
"rev": "a7a31dead0277b88e84bb7ee56d13a0fd50336ac",
|
||||||
"revCount": 121,
|
"revCount": 122,
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://copeberg.org/amadaluzia/pankomacs.git"
|
"url": "https://copeberg.org/amadaluzia/pankomacs.git"
|
||||||
},
|
},
|
||||||
|
@ -648,7 +632,6 @@
|
||||||
"chaotic": "chaotic",
|
"chaotic": "chaotic",
|
||||||
"disko": "disko",
|
"disko": "disko",
|
||||||
"flake-parts": "flake-parts",
|
"flake-parts": "flake-parts",
|
||||||
"gimp-nixpkgs": "gimp-nixpkgs",
|
|
||||||
"git-hooks-nix": "git-hooks-nix",
|
"git-hooks-nix": "git-hooks-nix",
|
||||||
"hetch": "hetch",
|
"hetch": "hetch",
|
||||||
"nixpkgs": "nixpkgs_3",
|
"nixpkgs": "nixpkgs_3",
|
||||||
|
|
|
@ -65,12 +65,6 @@
|
||||||
url = "https://copeberg.org/amadaluzia/alqages.git";
|
url = "https://copeberg.org/amadaluzia/alqages.git";
|
||||||
inputs.nixpkgs.follows = "nixpkgs";
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
};
|
};
|
||||||
gimp-nixpkgs = {
|
|
||||||
type = "github";
|
|
||||||
owner = "jtojnar";
|
|
||||||
repo = "nixpkgs";
|
|
||||||
ref = "gimp-meson";
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
outputs =
|
outputs =
|
||||||
inputs@{ flake-parts, ... }:
|
inputs@{ flake-parts, ... }:
|
||||||
|
|
|
@ -41,7 +41,7 @@
|
||||||
pkgs.alacritty
|
pkgs.alacritty
|
||||||
pkgs.fuzzel
|
pkgs.fuzzel
|
||||||
pkgs.amadaluzian-zsh
|
pkgs.amadaluzian-zsh
|
||||||
pkgs.qutebrowser
|
pkgs.ungoogled-chromium
|
||||||
pkgs.pwvucontrol
|
pkgs.pwvucontrol
|
||||||
pkgs.polari
|
pkgs.polari
|
||||||
pkgs.dino
|
pkgs.dino
|
||||||
|
|
|
@ -13,10 +13,9 @@ def main():
|
||||||
|
|
||||||
c.colors.webpage.darkmode.enabled = False
|
c.colors.webpage.darkmode.enabled = False
|
||||||
c.colors.webpage.preferred_color_scheme = "dark"
|
c.colors.webpage.preferred_color_scheme = "dark"
|
||||||
|
|
||||||
c.tabs.position = "top"
|
c.tabs.position = "top"
|
||||||
c.tabs.width = 32
|
c.tabs.width = 32
|
||||||
c.fonts.default_size = "9pt"
|
|
||||||
c.fonts.default_family = "sans-serif"
|
|
||||||
c.tabs.padding = {
|
c.tabs.padding = {
|
||||||
"bottom": 4,
|
"bottom": 4,
|
||||||
"top": 4,
|
"top": 4,
|
||||||
|
@ -24,6 +23,11 @@ def main():
|
||||||
"right": 6,
|
"right": 6,
|
||||||
}
|
}
|
||||||
c.tabs.indicator.width = 0
|
c.tabs.indicator.width = 0
|
||||||
|
c.tabs.title.format = "{audio}{relative_index} | {current_title}"
|
||||||
|
|
||||||
|
c.fonts.default_size = "9pt"
|
||||||
|
c.fonts.default_family = "sans-serif"
|
||||||
|
|
||||||
c.url.start_pages = "about:blank"
|
c.url.start_pages = "about:blank"
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -20,7 +20,7 @@ in
|
||||||
programs = {
|
programs = {
|
||||||
swaybg = {
|
swaybg = {
|
||||||
enable = true;
|
enable = true;
|
||||||
wallpaper = inputs.wallpkgs.wallpapers.rose-pine.rose_pine-02.path;
|
wallpaper = inputs.wallpkgs.wallpapers.rose-pine.rose_pine-04.path;
|
||||||
};
|
};
|
||||||
waybar.enable = true;
|
waybar.enable = true;
|
||||||
mako.enable = true;
|
mako.enable = true;
|
||||||
|
|
|
@ -29,6 +29,8 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
nix.settings.cores = 4;
|
||||||
|
|
||||||
nixpkgs.overlays = [
|
nixpkgs.overlays = [
|
||||||
inputs.alqages.overlays.default
|
inputs.alqages.overlays.default
|
||||||
];
|
];
|
||||||
|
|
|
@ -13,10 +13,9 @@ def main():
|
||||||
|
|
||||||
c.colors.webpage.darkmode.enabled = False
|
c.colors.webpage.darkmode.enabled = False
|
||||||
c.colors.webpage.preferred_color_scheme = "dark"
|
c.colors.webpage.preferred_color_scheme = "dark"
|
||||||
|
|
||||||
c.tabs.position = "top"
|
c.tabs.position = "top"
|
||||||
c.tabs.width = 32
|
c.tabs.width = 32
|
||||||
c.fonts.default_size = "9pt"
|
|
||||||
c.fonts.default_family = "sans-serif"
|
|
||||||
c.tabs.padding = {
|
c.tabs.padding = {
|
||||||
"bottom": 4,
|
"bottom": 4,
|
||||||
"top": 4,
|
"top": 4,
|
||||||
|
@ -24,6 +23,11 @@ def main():
|
||||||
"right": 6,
|
"right": 6,
|
||||||
}
|
}
|
||||||
c.tabs.indicator.width = 0
|
c.tabs.indicator.width = 0
|
||||||
|
c.tabs.title.format = "{audio}{relative_index} | {current_title}"
|
||||||
|
|
||||||
|
c.fonts.default_size = "9pt"
|
||||||
|
c.fonts.default_family = "sans-serif"
|
||||||
|
|
||||||
c.url.start_pages = "about:blank"
|
c.url.start_pages = "about:blank"
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -26,7 +26,7 @@
|
||||||
mpv
|
mpv
|
||||||
imv
|
imv
|
||||||
amberol
|
amberol
|
||||||
fractal
|
element-desktop
|
||||||
nicotine-plus-libadwaita
|
nicotine-plus-libadwaita
|
||||||
nautilus
|
nautilus
|
||||||
librewolf
|
librewolf
|
||||||
|
@ -35,9 +35,10 @@
|
||||||
gh
|
gh
|
||||||
fuzzel
|
fuzzel
|
||||||
foot
|
foot
|
||||||
signal-desktop
|
signal-desktop-bin
|
||||||
dino
|
dino
|
||||||
polari
|
polari
|
||||||
|
showtime
|
||||||
# vesktop
|
# vesktop
|
||||||
;
|
;
|
||||||
inherit (inputs.hetch.packages.${pkgs.system}) hetch;
|
inherit (inputs.hetch.packages.${pkgs.system}) hetch;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue