mirror of
https://git.sr.ht/~rouven/nixos-config
synced 2025-01-18 17:11:39 +01:00
kernel update arrived
This commit is contained in:
parent
40d7f3a05c
commit
754b655ad4
5 changed files with 13 additions and 11 deletions
12
flake.lock
12
flake.lock
|
@ -140,11 +140,11 @@
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1680439377,
|
"lastModified": 1680537665,
|
||||||
"narHash": "sha256-hF/cjhEWQR3g70RnI61GQ10Wrp8h6dDtWmkoI0LZ4PE=",
|
"narHash": "sha256-o0VPjm64/CSTWf59Skw++1ExNDst+pnqX0u9KqhV8cw=",
|
||||||
"owner": "hyprwm",
|
"owner": "hyprwm",
|
||||||
"repo": "Hyprland",
|
"repo": "Hyprland",
|
||||||
"rev": "b1426cad28f250a2269012da904901e0edcef114",
|
"rev": "0a099ca2ab8e4b5da01189202740bbc4bbe81f5b",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
@ -334,11 +334,11 @@
|
||||||
},
|
},
|
||||||
"nixpkgs_2": {
|
"nixpkgs_2": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1680213900,
|
"lastModified": 1680398059,
|
||||||
"narHash": "sha256-cIDr5WZIj3EkKyCgj/6j3HBH4Jj1W296z7HTcWj1aMA=",
|
"narHash": "sha256-qtbKRe+pWuf5nNINdiCgn6EwOIQZxj0Ig/wybBpFNkQ=",
|
||||||
"owner": "nixos",
|
"owner": "nixos",
|
||||||
"repo": "nixpkgs",
|
"repo": "nixpkgs",
|
||||||
"rev": "e3652e0735fbec227f342712f180f4f21f0594f2",
|
"rev": "7c656856e9eb863c4d21c83e2601dd77f95f6941",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{ stdenv, fetchurl, lib, libX11, libXext, alsa-lib, freetype, ... }:
|
{ stdenv, fetchurl, lib, libX11, libXext, alsa-lib, freetype, curlWithGnuTls, ... }:
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "X32-Edit";
|
pname = "X32-Edit";
|
||||||
# 4.3 has some extra dependencies, TODO fix later
|
#version = "4.3";
|
||||||
version = "4.1";
|
version = "4.1";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
|
@ -22,6 +22,7 @@ stdenv.mkDerivation rec {
|
||||||
let
|
let
|
||||||
# we prepare our library path in the let clause to avoid it become part of the input of mkDerivation
|
# we prepare our library path in the let clause to avoid it become part of the input of mkDerivation
|
||||||
libPath = lib.makeLibraryPath [
|
libPath = lib.makeLibraryPath [
|
||||||
|
#curlWithGnuTls # libcurl-gnutls.so.4
|
||||||
libX11 # libX11.so.6
|
libX11 # libX11.so.6
|
||||||
libXext # libXext.so.6
|
libXext # libXext.so.6
|
||||||
alsa-lib # libasound.so.2
|
alsa-lib # libasound.so.2
|
||||||
|
|
|
@ -141,7 +141,7 @@
|
||||||
tree-sitter-go
|
tree-sitter-go
|
||||||
tree-sitter-haskell
|
tree-sitter-haskell
|
||||||
tree-sitter-html
|
tree-sitter-html
|
||||||
tree-sitter-java
|
#tree-sitter-java # this is broken too lmao
|
||||||
tree-sitter-javascript
|
tree-sitter-javascript
|
||||||
tree-sitter-json
|
tree-sitter-json
|
||||||
tree-sitter-latex
|
tree-sitter-latex
|
||||||
|
|
|
@ -22,7 +22,7 @@
|
||||||
|
|
||||||
# sound
|
# sound
|
||||||
pavucontrol
|
pavucontrol
|
||||||
(pkgs.callPackage ../../../pkgs/x32edit {})
|
(pkgs.callPackage ../../../pkgs/x32edit { })
|
||||||
|
|
||||||
# bluetooth
|
# bluetooth
|
||||||
blueman
|
blueman
|
||||||
|
@ -53,7 +53,7 @@
|
||||||
virt-manager
|
virt-manager
|
||||||
ventoy-bin
|
ventoy-bin
|
||||||
|
|
||||||
trash-cli # better rm
|
trash-cli # better rm
|
||||||
ripgrep # better grep
|
ripgrep # better grep
|
||||||
exa # ls but with icons
|
exa # ls but with icons
|
||||||
bat # better less
|
bat # better less
|
||||||
|
|
|
@ -11,6 +11,7 @@
|
||||||
"switch" = "sudo nixos-rebuild switch && cat ${../../../../images/another-cat-2.sixel}";
|
"switch" = "sudo nixos-rebuild switch && cat ${../../../../images/another-cat-2.sixel}";
|
||||||
"update" = "cd /etc/nixos && nix flake update && cat ${../../../../images/another-cat.sixel}";
|
"update" = "cd /etc/nixos && nix flake update && cat ${../../../../images/another-cat.sixel}";
|
||||||
"garbage" = "sudo nix-collect-garbage -d && cat ${../../../../images/cat-garbage.sixel}";
|
"garbage" = "sudo nix-collect-garbage -d && cat ${../../../../images/cat-garbage.sixel}";
|
||||||
|
q = "exit";
|
||||||
};
|
};
|
||||||
history = {
|
history = {
|
||||||
size = 10000;
|
size = 10000;
|
||||||
|
|
Loading…
Reference in a new issue