This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { lib | |
| , stdenvNoCC | |
| , fetchFromGitHub | |
| , inkscape | |
| , just | |
| , xcursorgen | |
| , callPackage | |
| }@args: | |
| let | |
| capitalizeFirst = str: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| From d0c6fed42094faad439124960167d18d509317dc Mon Sep 17 00:00:00 2001 | |
| From: Carl Hjerpe <[email protected]> | |
| Date: Tue, 11 Jun 2024 02:01:55 +0200 | |
| Subject: [PATCH] test | |
| --- | |
| modules/imx8/imx8mp-sdimage.nix | 68 +++++++++++++++++---------------- | |
| 1 file changed, 36 insertions(+), 32 deletions(-) | |
| diff --git a/modules/imx8/imx8mp-sdimage.nix b/modules/imx8/imx8mp-sdimage.nix |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [lillecarl@nub:~/Code/nixos]$ echo $PATH | |
| /home/lillecarl/Code/nixos/.nix/bin:/home/lillecarl/Code/nixos/bin:/nix/store/cmkk0l1qs0hph06nlp0ji1arkpxp44xs-kitty-0.34.1/bin:/nix/store/1izdxwml9nsifjrh53rdfiglhjmrnx2s-imagemagick-7.1.1-32/bin:/nix/store/1c9jq1csrx42g5vqynlfl0x63k2nx1x9-ncurses-6.4-dev/bin:/run/wrappers/bin:/home/lillecarl/.local/share/flatpak/exports/bin:/var/lib/flatpak/exports/bin:/home/lillecarl/.nix-profile/bin:/nix/profile/bin:/home/lillecarl/.local/state/nix/profile/bin:/etc/profiles/per-user/lillecarl/bin:/nix/var/nix/profiles/default/bin:/run/current-system/sw/bin:/krew/bin:/nix/store/bd0ii4p72zgiy1jfaww5h3xihxn2l56x-gcc-wrapper-13.2.0/bin:/nix/store/jsjfmx7r6cpyixxsg7bjl5cy3y8hw7k7-binutils-wrapper-2.41/bin:/nix/store/pc6yqwmnzy0xqdzm7j9kxhl0hrmk4p50-pciutils-3.11.1/bin:/nix/store/5zw6k903flzjrp3yiqrm5isvdfq30y3l-pkgconf-wrapper-2.1.1/bin:/home/lillecarl/.config/krew/bin | |
| [lillecarl@nub:~/Code/nixos]$ nix develop | |
| warning: Git tree '/home/lillecarl/Code/nixos' is dirty | |
| copying '/nix/store/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| mdadm = { | |
| root = { | |
| type = "mdadm"; | |
| level = 1; | |
| content = { | |
| type = "gpt"; | |
| partitions = { | |
| primary = { | |
| start = "1MiB"; | |
| end = "100%"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Cache PATH from nix develop for one hour | |
| if ! fd --type f --hidden --quiet --changed-within 1h .nixpath | |
| then | |
| # shellcheck disable=2016 | |
| nix develop --profile "$PWD/.nix/profile" -c sh -c 'echo $PATH' > .nixpath | |
| else | |
| echo "Using cached Nix PATH" | |
| fi | |
| PATH_add "$(cat .nixpath)" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| From 01b51421ffd69634e8c8374a00b756a09f22d459 Mon Sep 17 00:00:00 2001 | |
| From: Carl Hjerpe <[email protected]> | |
| Date: Mon, 6 May 2024 15:57:44 +0200 | |
| Subject: [PATCH] passff: Copy rather than symlink manifest | |
| Relative symlinks don't work well with recursive linking in home-manager | |
| --- | |
| pkgs/tools/security/passff-host/default.nix | 2 +- | |
| 1 file changed, 1 insertion(+), 1 deletion(-) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| From 96e8af0db92f64c0f3f3118297b9aaa8561142f7 Mon Sep 17 00:00:00 2001 | |
| From: Carl Hjerpe <[email protected]> | |
| Date: Mon, 29 Apr 2024 14:56:15 +0200 | |
| Subject: [PATCH] podman: Add compose support | |
| Enables docker socket | |
| Enables weekly automatic pruning | |
| Adds alias for docker-compose -> podman-compose | |
| --- | |
| hosts/nub/default.nix | 7 +++++-- |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { pkgs, lib, inputs, self, ... }: | |
| let | |
| pin = | |
| let | |
| src = inputs.hyprscroller; | |
| pinpath = "${src}/hyprpm.toml"; | |
| toml = builtins.fromTOML (builtins.readFile pinpath); | |
| pins = toml.hyprscroller.commit_pins; | |
| pin = lib.lists.last pins; | |
| landrev = lib.elemAt pin 0; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| _: | |
| { | |
| home.sessionVariables = { | |
| SSH_AUTH_SOCK = "$XDG_RUNTIME_DIR/keyring/ssh"; | |
| }; | |
| services.gnome-keyring = { | |
| enable = true; | |
| components = [ "pkcs11" "secrets" "ssh" ]; | |
| }; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| _: | |
| { | |
| home.sessionVariables = { | |
| SSH_AUTH_SOCK = "$XDG_RUNTIME_DIR/keyring/ssh"; | |
| }; | |
| services.gnome-keyring = { | |
| enable = true; | |
| components = [ "pkcs11" "secrets" "ssh" ]; | |
| }; | |
| } |