updated flake

This commit is contained in:
Till 2023-09-26 13:15:04 +02:00
parent 77cf6bb15a
commit 0d92bf24f7
9 changed files with 25 additions and 9 deletions

12
flake.lock generated
View file

@ -7,11 +7,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1690629157, "lastModified": 1695708052,
"narHash": "sha256-hsZC4tPH4Ab/ynuswApNFzshbfG79Ctbrc4Qa0z9sek=", "narHash": "sha256-QiWOrZcCmY+zH2NVM6/opZaMRMgam9u+qVYycKLqL10=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "5c23226768abd3402636f4d3c65aea8450997102", "rev": "dd88dbc69438384bd94f8282584a86798750028c",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -22,11 +22,11 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1690548937, "lastModified": 1695360818,
"narHash": "sha256-x3ZOPGLvtC0/+iFAg9Kvqm/8hTAIkGjc634SqtgaXTA=", "narHash": "sha256-JlkN3R/SSoMTa+CasbxS1gq+GpGxXQlNZRUh9+LIy/0=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "2a9d660ff0f7ffde9d73be328ee6e6f10ef66b28", "rev": "e35dcc04a3853da485a396bdd332217d0ac9054f",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -36,7 +36,7 @@
nativeBuildInputs = []; nativeBuildInputs = [];
}; };
# readODS = pkgs.rPackages.buildRPackage { # readODS = pkgs.rPackages.buildRPackage {
# name = "goethR"; # name = "readODS";
# src = builtins.fetchGit { # src = builtins.fetchGit {
# url = "https://git@github.com/ktiu/readODS/"; # url = "https://git@github.com/ktiu/readODS/";
# ref = "v1.8"; # ref = "v1.8";
@ -81,6 +81,7 @@
tidyr tidyr
tidyverse tidyverse
tmap tmap
xlsx
yaml yaml
lectuR lectuR
publishR publishR

View file

@ -46,6 +46,10 @@
unzip unzip
wl-clipboard wl-clipboard
# admin
dig.dnsutils
pwgen
# messenger # messenger
mattermost-desktop mattermost-desktop
signal-desktop signal-desktop
@ -68,6 +72,8 @@
taskopen taskopen
gnome.gnome-sound-recorder gnome.gnome-sound-recorder
# zoom-us # zoom-us
okular
xournalpp
evolution evolution
# publishing # publishing

View file

@ -133,5 +133,6 @@
xdg.configFile."nvim/after/ftplugin/markdown.vim".source = ./after/ftplugin/markdown.vim; xdg.configFile."nvim/after/ftplugin/markdown.vim".source = ./after/ftplugin/markdown.vim;
xdg.configFile."nvim/ftplugin/r.vim".source = ./ftplugin/r.vim; xdg.configFile."nvim/ftplugin/r.vim".source = ./ftplugin/r.vim;
xdg.configFile."nvim/ftplugin/rmd.vim".source = ./ftplugin/rmd.vim; xdg.configFile."nvim/ftplugin/rmd.vim".source = ./ftplugin/rmd.vim;
xdg.configFile."nvim/ftplugin/tex.vim".source = ./ftplugin/tex.vim;
xdg.configFile."nvim/syntax/rmd.vim".source = ./syntax/rmd.vim; xdg.configFile."nvim/syntax/rmd.vim".source = ./syntax/rmd.vim;
} }

View file

@ -3,7 +3,7 @@ setlocal textwidth=0
setlocal syntax=rmd setlocal syntax=rmd
setlocal breakat-=@ setlocal breakat-=@
set makeprg=Rscript\ -e\ 'publishR::render(\\"%\\")' setlocal makeprg=Rscript\ -e\ 'publishR::render(\\"%\\")'
" nnoremap <localleader>oh :! xdg-open %:r.html<cr> " nnoremap <localleader>oh :! xdg-open %:r.html<cr>
nnoremap <localleader>oh :! xdg-open %:r.html<cr> nnoremap <localleader>oh :! xdg-open %:r.html<cr>

View file

@ -1 +1,2 @@
set makeprg=xelatex setlocal makeprg=xelatex\ %
nnoremap <localleader>op :! xdg-open %:r.pdf<cr>

View file

@ -9,6 +9,7 @@ let
blindtext blindtext
changepage changepage
csquotes csquotes
dashrule
enotez enotez
enumitem enumitem
environ environ
@ -16,6 +17,7 @@ let
gensymb gensymb
graphbox graphbox
idxlayout idxlayout
ifmtarg
imakeidx imakeidx
lastpage lastpage
lipsum lipsum

View file

@ -63,6 +63,7 @@
foot foot
htop htop
killall killall
virt-manager
]; ];
fonts.packages = with pkgs; [ fonts.packages = with pkgs; [
@ -77,5 +78,8 @@
mullvad-vpn.enable = true; mullvad-vpn.enable = true;
}; };
virtualisation.libvirtd.enable = true;
programs.dconf.enable = true;
system.stateVersion = "22.11"; system.stateVersion = "22.11";
} }

View file

@ -18,5 +18,6 @@
environment.systemPackages = with pkgs.gnome; [ environment.systemPackages = with pkgs.gnome; [
gnome-tweaks gnome-tweaks
gedit gedit
gnome-boxes
]; ];
} }