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
dmidecode
dnsmasq
dtach
fd
file
fzf
@ -55,6 +56,7 @@
strace
swaylock
tig
tmux
traceroute
unrar
unzip

8
flake.lock generated
View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -55,7 +55,7 @@
};
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";
};