Compare commits

...

4 commits

Author SHA1 Message Date
Rouven Seifert 231dc3f23c
updates 2024-01-11 14:14:55 +01:00
Rouven Seifert 7e8859d116
network: bind wg0to wireless 2024-01-11 14:14:19 +01:00
Rouven Seifert 6a4e9cced8
spotify: remove electron app 2024-01-11 14:10:11 +01:00
Rouven Seifert 2df8d36f2f
zsh: fix escaping of # and ? 2024-01-11 14:09:56 +01:00
4 changed files with 13 additions and 11 deletions

View file

@ -180,11 +180,11 @@
]
},
"locked": {
"lastModified": 1704383912,
"narHash": "sha256-Be7O73qoOj/z+4ZCgizdLlu+5BkVvO2KO299goZ9cW8=",
"lastModified": 1704809957,
"narHash": "sha256-Z8sBeoeeY2O+BNqh5C+4Z1h1F1wQ2mij7yPZ2GY397M=",
"owner": "nix-community",
"repo": "home-manager",
"rev": "26b8adb300e50efceb51fff6859a1a6ba1ade4f7",
"rev": "e13aa9e287b3365473e5897e3667ea80a899cdfb",
"type": "github"
},
"original": {
@ -281,11 +281,11 @@
]
},
"locked": {
"lastModified": 1703992163,
"narHash": "sha256-709CGmwU34dxv8DjSpRBZ+HibVJIVaFcA4JH+GFnhyM=",
"lastModified": 1704596958,
"narHash": "sha256-BK3Ohsz7m8X6qVKFxDtr8KVcHipfr5hYE9PDIJevHbQ=",
"owner": "nix-community",
"repo": "nix-index-database",
"rev": "d6510ce144f5da7dd9bac667ba3d5a4946c00d11",
"rev": "f46800ac5a6e9f892fe36e50821c5d85794ecc62",
"type": "github"
},
"original": {
@ -296,11 +296,11 @@
},
"nixpkgs": {
"locked": {
"lastModified": 1704194953,
"narHash": "sha256-RtDKd8Mynhe5CFnVT8s0/0yqtWFMM9LmCzXv/YKxnq4=",
"lastModified": 1704722960,
"narHash": "sha256-mKGJ3sPsT6//s+Knglai5YflJUF2DGj7Ai6Ynopz0kI=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "bd645e8668ec6612439a9ee7e71f7eac4099d4f6",
"rev": "317484b1ead87b9c1b8ac5261a8d2dd748a0492d",
"type": "github"
},
"original": {

View file

@ -162,7 +162,7 @@
Address = "192.168.43.3/32";
DNS = "192.168.43.1";
DNSSEC = true;
BindCarrier = [ "wlp9s0" "enp0s31f6" ];
BindCarrier = [ "wlp9s0" ];
};
};
};

View file

@ -48,6 +48,8 @@
export MCFLY_PROMPT=""
source ${pkgs.zsh-fzf-tab}/share/fzf-tab/fzf-tab.plugin.zsh
source ${pkgs.agdsn-zsh-config}/etc/zsh/zshrc
unsetopt extendedglob
function svpn() {
unit=$(systemctl list-unit-files | grep "openconnect\|wg-quick\|wireguard\|openvpn\|openfortivpn" | cut -d "." -f1 | fzf --preview 'systemctl status {}')

View file

@ -1,6 +1,6 @@
{ config, pkgs, ... }:
{
home.packages = with pkgs;[ spotify spotify-tui ];
home.packages = with pkgs;[ spotify-tui ];
age.secrets.spotify = {
file = ../../../../secrets/rouven/spotify.age;
};