Remove srv

This commit is contained in:
Dave Gallant
2023-01-22 18:29:51 -05:00
parent ed55cf0504
commit 317d4d25f3
6 changed files with 6 additions and 45 deletions

12
flake.lock generated
View File

@@ -28,11 +28,11 @@
"utils": "utils" "utils": "utils"
}, },
"locked": { "locked": {
"lastModified": 1674250603, "lastModified": 1674477719,
"narHash": "sha256-SBolFspxBHpW3hCCDNAFXUiO2mucmkVmf17UmSIK3Cs=", "narHash": "sha256-tciutt7rulypHZfbXp2j+5K6exyVAtsxF2//2J9BSvI=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "275ab728912006eecb549338a50f24f294a7cfb7", "rev": "ab25abf9e5c07b3c90d78aa06c44a4085ecba003",
"type": "github" "type": "github"
}, },
"original": { "original": {
@@ -93,11 +93,11 @@
}, },
"nixpkgs_2": { "nixpkgs_2": {
"locked": { "locked": {
"lastModified": 1674120619, "lastModified": 1674211260,
"narHash": "sha256-xLT1FQl7/jNPOEq5q/vmc3AExt1V9LtcjM+QY2+MUpA=", "narHash": "sha256-xU6Rv9sgnwaWK7tgCPadV6HhI2Y/fl4lKxJoG2+m9qs=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "d7705c01ef0a39c8ef532d1033bace8845a07d35", "rev": "5ed481943351e9fd354aeb557679624224de38d5",
"type": "github" "type": "github"
}, },
"original": { "original": {

View File

@@ -430,7 +430,6 @@ in {
home.file.".config/autostart/xmodmap.desktop".source = ./xmodmap.desktop; home.file.".config/autostart/xmodmap.desktop".source = ./xmodmap.desktop;
home.file.".config/nvim/lua".source = ./nvim/lua; home.file.".config/nvim/lua".source = ./nvim/lua;
home.file.".config/srv".source = ./srv;
home.file.".aws/config".source = ./.aws/config; home.file.".aws/config".source = ./.aws/config;
} }

View File

@@ -1,9 +0,0 @@
---
feeds:
- https://news.ycombinator.com/rss
- https://www.bleepingcomputer.com/feed/
- https://www.theregister.com/security/headlines.atom
- https://www.zdnet.com/topic/security/rss.xml
- https://www.cbc.ca/cmlink/rss-topstories
# Optionally define an application to view the feeds
externalViewer: brave

View File

@@ -1,6 +1,5 @@
final: prev: { final: prev: {
rfd = prev.callPackage ./rfd {}; rfd = prev.callPackage ./rfd {};
srv = prev.callPackage ./srv {};
tmux-sessionizer = prev.callPackage ./tmux-sessionizer {}; tmux-sessionizer = prev.callPackage ./tmux-sessionizer {};
vpngate = prev.callPackage ./vpngate {}; vpngate = prev.callPackage ./vpngate {};
yar = prev.callPackage ./yar {}; yar = prev.callPackage ./yar {};

View File

@@ -1,25 +0,0 @@
{
lib,
fetchFromGitHub,
buildGoModule,
}:
buildGoModule rec {
pname = "srv";
version = "v0.1.2";
vendorSha256 = "sha256-ebumpo9hgr7A+Fsznga4ksYu4mcOIfaaKz0uJu2rivE=";
src = fetchFromGitHub {
owner = "davegallant";
repo = "srv";
rev = version;
sha256 = "sha256-x5l/NFEbbRPMBY061g4qRHYV6QUShO7yHqSw+Hir9M0=";
};
meta = with lib; {
description = "a simple rss viewer";
license = licenses.gpl3;
maintainers = with maintainers; [davegallant];
platforms = platforms.linux ++ platforms.darwin;
};
}

View File

@@ -141,9 +141,6 @@ in {
# blog # blog
hugo hugo
# news
srv
# music # music
spotify-tui spotify-tui
]; ];