mirror of
https://github.com/sadan4/dotfiles.git
synced 2024-11-16 23:04:39 -05:00
6 current 2024-05-27 21:21:06 24.11.20240524.bfb7a88 Unknown *
This commit is contained in:
parent
7afd6626c4
commit
d7c8daf0e4
6 changed files with 8 additions and 3 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1,2 +1,3 @@
|
||||||
build.log
|
build.log
|
||||||
error.log
|
error.log
|
||||||
|
.box
|
||||||
|
|
|
@ -4,7 +4,7 @@ let
|
||||||
files = import ../../common/files.nix { inherit config; };
|
files = import ../../common/files.nix { inherit config; };
|
||||||
shell = import ../../common/shell.nix { inherit config pkgs; };
|
shell = import ../../common/shell.nix { inherit config pkgs; };
|
||||||
p = import ../../common/pkgs.nix { inherit pkgs config; };
|
p = import ../../common/pkgs.nix { inherit pkgs config; };
|
||||||
_p1 = p.dev ++ p.general ++ p.scripts;
|
_p1 = p.dev ++ p.general ++ p.scripts ++ p.wsl;
|
||||||
zshInitArgs = [
|
zshInitArgs = [
|
||||||
"source ${pkgs.zsh-powerlevel10k}/share/zsh-powerlevel10k/powerlevel10k.zsh-theme"
|
"source ${pkgs.zsh-powerlevel10k}/share/zsh-powerlevel10k/powerlevel10k.zsh-theme"
|
||||||
"source ${pkgs.zsh-syntax-highlighting}/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh"
|
"source ${pkgs.zsh-syntax-highlighting}/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh"
|
||||||
|
|
2
build
2
build
|
@ -3,7 +3,7 @@
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
#Change to change box setup
|
#Change to change box setup
|
||||||
BOX="wsl"
|
BOX="$(cat .box)"
|
||||||
|
|
||||||
pushd ~/nixos/
|
pushd ~/nixos/
|
||||||
notify(){
|
notify(){
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
};
|
};
|
||||||
gh = {
|
gh = {
|
||||||
recursive = true;
|
recursive = true;
|
||||||
source = config.lib.file.mkOutOfStoreSymlink "${config.home.homeDirectory}/nixos/dotfiles/gh";
|
source = ../dotfiles/gh;
|
||||||
target = "./.config/gh";
|
target = "./.config/gh";
|
||||||
};
|
};
|
||||||
btop = {
|
btop = {
|
||||||
|
|
|
@ -99,4 +99,7 @@ in
|
||||||
python3 -c "print($*)"
|
python3 -c "print($*)"
|
||||||
'')
|
'')
|
||||||
];
|
];
|
||||||
|
wsl = with pkgs;[
|
||||||
|
wslu
|
||||||
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
{ pkgs ? import <nixpkgs> {} }:
|
{ pkgs ? import <nixpkgs> {} }:
|
||||||
pkgs.mkShell {
|
pkgs.mkShell {
|
||||||
nativeBuildInputs = with pkgs;[
|
nativeBuildInputs = with pkgs;[
|
||||||
|
bash
|
||||||
sops
|
sops
|
||||||
ssh-to-age
|
ssh-to-age
|
||||||
git
|
git
|
||||||
|
|
Loading…
Reference in a new issue