non important commit
This commit is contained in:
parent
ebe4741b0e
commit
cb2c336e17
11 changed files with 25 additions and 2243 deletions
|
|
@ -1,19 +0,0 @@
|
|||
#!/usr/bin/env bash
|
||||
set -e
|
||||
if [[ ! -d "/home/benag/.nix-config/configuration/modules/dots/quick_shell" ]]; then
|
||||
echo "Cannot find source directory; Did you move it?"
|
||||
echo "(Looking for "/home/benag/.nix-config/configuration/modules/dots/quick_shell")"
|
||||
echo 'Cannot force reload with this script - use "direnv reload" manually and then try again'
|
||||
exit 1
|
||||
fi
|
||||
|
||||
# rebuild the cache forcefully
|
||||
_nix_direnv_force_reload=1 direnv exec "/home/benag/.nix-config/configuration/modules/dots/quick_shell" true
|
||||
|
||||
# Update the mtime for .envrc.
|
||||
# This will cause direnv to reload again - but without re-building.
|
||||
touch "/home/benag/.nix-config/configuration/modules/dots/quick_shell/.envrc"
|
||||
|
||||
# Also update the timestamp of whatever profile_rc we have.
|
||||
# This makes sure that we know we are up to date.
|
||||
touch -r "/home/benag/.nix-config/configuration/modules/dots/quick_shell/.envrc" "/home/benag/.nix-config/configuration/modules/dots/quick_shell/.direnv"/*.rc
|
||||
|
|
@ -1 +0,0 @@
|
|||
/nix/store/0w79bqwfd5zhb2276d0c00yiffzq4cwj-source
|
||||
|
|
@ -1 +0,0 @@
|
|||
/nix/store/z940vdbq3mm4iqp6mxhhn2x0xma9y6j2-source
|
||||
|
|
@ -1 +0,0 @@
|
|||
/nix/store/zkrz054gvl1dcxkw25d8lgx8l10px665-source
|
||||
|
|
@ -1 +0,0 @@
|
|||
/nix/store/2k841qrncbdwlfm2fcnim4vslv2h027d-nix-shell-env
|
||||
File diff suppressed because it is too large
Load diff
|
|
@ -1 +0,0 @@
|
|||
use flake
|
||||
48
configuration/modules/dots/quick_shell/flake.lock
generated
48
configuration/modules/dots/quick_shell/flake.lock
generated
|
|
@ -1,48 +0,0 @@
|
|||
{
|
||||
"nodes": {
|
||||
"nixpkgs": {
|
||||
"locked": {
|
||||
"lastModified": 1771848320,
|
||||
"narHash": "sha256-0MAd+0mun3K/Ns8JATeHT1sX28faLII5hVLq0L3BdZU=",
|
||||
"owner": "nixos",
|
||||
"repo": "nixpkgs",
|
||||
"rev": "2fc6539b481e1d2569f25f8799236694180c0993",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
"owner": "nixos",
|
||||
"ref": "nixos-unstable",
|
||||
"repo": "nixpkgs",
|
||||
"type": "github"
|
||||
}
|
||||
},
|
||||
"quickshell": {
|
||||
"inputs": {
|
||||
"nixpkgs": [
|
||||
"nixpkgs"
|
||||
]
|
||||
},
|
||||
"locked": {
|
||||
"lastModified": 1772925576,
|
||||
"narHash": "sha256-mMoiXABDtkSJxCYDrkhJ/TrrJf5M46oUfIlJvv2gkZ0=",
|
||||
"ref": "refs/heads/master",
|
||||
"rev": "15a84097653593dd15fad59a56befc2b7bdc270d",
|
||||
"revCount": 750,
|
||||
"type": "git",
|
||||
"url": "https://git.outfoxxed.me/outfoxxed/quickshell"
|
||||
},
|
||||
"original": {
|
||||
"type": "git",
|
||||
"url": "https://git.outfoxxed.me/outfoxxed/quickshell"
|
||||
}
|
||||
},
|
||||
"root": {
|
||||
"inputs": {
|
||||
"nixpkgs": "nixpkgs",
|
||||
"quickshell": "quickshell"
|
||||
}
|
||||
}
|
||||
},
|
||||
"root": "root",
|
||||
"version": 7
|
||||
}
|
||||
|
|
@ -1,27 +0,0 @@
|
|||
{
|
||||
inputs = {
|
||||
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
|
||||
|
||||
quickshell = {
|
||||
url = "git+https://git.outfoxxed.me/outfoxxed/quickshell";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
};
|
||||
|
||||
outputs = {
|
||||
nixpkgs,
|
||||
quickshell,
|
||||
...
|
||||
}: let
|
||||
pkgs = nixpkgs.legacyPackages.x86_64-linux;
|
||||
qs = quickshell.packages.x86_64-linux.default;
|
||||
in {
|
||||
devShells.x86_64-linux.default = pkgs.mkShell {
|
||||
packages = [
|
||||
qs
|
||||
];
|
||||
};
|
||||
|
||||
packages.x86_64-linux.default = qs;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue