Compare commits

..

8 Commits

Author SHA1 Message Date
ef5dd97e8f
flake: update nvim 2023-11-02 13:48:09 +01:00
641bed9cad
packages: add dtach, tmux 2023-11-02 13:47:55 +01:00
036ffda2f8
nixy/fs: change fs uuid 2023-11-02 13:46:30 +01:00
b2b5a9564c
nixy/environment: remove SSH_ASKPASS from env 2023-10-31 21:23:16 +01:00
9f958a5643
home/gpg: set pinentry to curses 2023-10-31 21:22:47 +01:00
ee5102e959
home/zsh: update prompt 2023-10-31 19:41:46 +01:00
fb4cf11448
nixy/nix: enable sandbox 2023-10-30 23:58:49 +01:00
139b48e84b
home/packages: add tea 2023-10-30 23:58:31 +01:00
7 changed files with 15 additions and 7 deletions

View File

@ -17,6 +17,7 @@
direnv direnv
dmidecode dmidecode
dnsmasq dnsmasq
dtach
fd fd
file file
fzf fzf
@ -55,6 +56,7 @@
strace strace
swaylock swaylock
tig tig
tmux
traceroute traceroute
unrar unrar
unzip unzip

8
flake.lock generated
View File

@ -192,11 +192,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1698363600, "lastModified": 1698783626,
"narHash": "sha256-r71uS/uw3I9xJAnmlgaN0TC9aC/1m2L4iNhKjqBzAtQ=", "narHash": "sha256-esHANPDZbeIiBlXdFjBXpalHzSgtn+2TOmUa76dE6us=",
"ref": "refs/heads/master", "ref": "refs/heads/master",
"rev": "9652f4cb75d799ee5a2511883d2fda60bea00141", "rev": "b660608fb3ff05e1ba88222d2e8d16a8ca5e580e",
"revCount": 19, "revCount": 20,
"type": "git", "type": "git",
"url": "https://git.project-cloud.net/asmir/nvim_flake" "url": "https://git.project-cloud.net/asmir/nvim_flake"
}, },

View File

@ -199,6 +199,7 @@ with lib; {
enable = true; enable = true;
defaultCacheTtl = 1800; defaultCacheTtl = 1800;
enableSshSupport = true; enableSshSupport = true;
pinentryFlavor = "curses";
}; };
swayidle = { swayidle = {

View File

@ -68,6 +68,7 @@
sioyek sioyek
skypeforlinux skypeforlinux
slurp slurp
tea
texlive.combined.scheme-full texlive.combined.scheme-full
thunderbird thunderbird
upx upx

View File

@ -52,8 +52,8 @@
src = pkgs.fetchFromGitHub { src = pkgs.fetchFromGitHub {
owner = "sindresorhus"; owner = "sindresorhus";
repo = "pure"; repo = "pure";
rev = "47c0c881f0e7cfdb5eaccd335f52ad17b897c060"; rev = "87e6f5dd4c793f6d980532205aaefe196780606f";
sha256 = "15xdhi72pq88ls5gx1h0k23jvb41j6kq6ar17dqmd5d38zsgwl3v"; hash = "sha256-TR4CyBZ+KoZRs9XDmWE5lJuUXXU1J8E2Z63nt+FS+5w=";
}; };
file = "pure.plugin.zsh"; file = "pure.plugin.zsh";
} }

View File

@ -26,6 +26,7 @@
gc.options = "--delete-older-than 7d"; gc.options = "--delete-older-than 7d";
package = pkgs.nixUnstable; package = pkgs.nixUnstable;
settings = { settings = {
sandbox = true;
experimental-features = ["nix-command" "flakes"]; experimental-features = ["nix-command" "flakes"];
}; };
}; };
@ -107,6 +108,9 @@
nixpkgs.config.allowUnfree = true; nixpkgs.config.allowUnfree = true;
nixpkgs.overlays = [nix-xilinx.overlay]; nixpkgs.overlays = [nix-xilinx.overlay];
environment = { environment = {
extraInit = ''
unset -v SSH_ASKPASS
'';
homeBinInPath = true; homeBinInPath = true;
variables = { variables = {
PATH = "$HOME/.cargo/bin"; PATH = "$HOME/.cargo/bin";

View File

@ -55,7 +55,7 @@
}; };
fileSystems."/opt/xilinx" = { fileSystems."/opt/xilinx" = {
device = "/dev/disk/by-uuid/09912fb9-0284-4b4e-add1-d4a27329539f"; device = "/dev/disk/by-uuid/f5c27ef2-8053-4d96-9f8f-c6a50d6193b9";
fsType = "erofs"; fsType = "erofs";
}; };