This commit is contained in:
Till 2023-05-15 00:20:08 +02:00
parent 3c3998d270
commit 02545a51e9
4 changed files with 25 additions and 7 deletions

View file

@ -12,11 +12,14 @@
nixosConfigurations = { nixosConfigurations = {
romulus = nixpkgs.lib.nixosSystem { romulus = nixpkgs.lib.nixosSystem {
specialArgs = { inherit inputs; }; specialArgs = { inherit inputs; };
modules = [ modules = [
{ {
programs.sway.enable = true; environment.systemPackages = [
networking.hostName = "romulus"; nixpkgs.wl-clipboard
} ];
programs.sway.enable = true;
networking.hostName = "romulus";
}
./system ./system
./system/hardware-romulus.nix ./system/hardware-romulus.nix
]; ];

View file

@ -1,4 +1,4 @@
{ config, pkgs, ... }: { pkgs, ... }:
{ {
home.packages = with pkgs; home.packages = with pkgs;
@ -11,6 +11,7 @@
sf sf
tidyverse tidyverse
tmap tmap
languageserver
]; ];
}; };
in [ in [

View file

@ -21,7 +21,6 @@
jq jq
khal khal
khard khard
neomutt
nodejs nodejs
qutebrowser qutebrowser
rstudio rstudio
@ -38,6 +37,7 @@
./R.nix ./R.nix
./nvim ./nvim
./fish.nix ./fish.nix
./neomutt.nix
]; ];
home.shellAliases = { home.shellAliases = {

14
home/neomutt.nix Normal file
View file

@ -0,0 +1,14 @@
{ config, pkgs, ... }:
{
programs.neomutt = {
# extraConfig = builtins.readFile ./config.vim;
enable = true;
vimKeys = true;
# xdg.configFile."nvim/autocommmands.vim".source = ./autocommands.vim;
# xdg.configFile."nvim/ftplugin/markdown.vim".source = ./ftplugin/markdown.vim;
# xdg.configFile."nvim/ftplugin/r.vim".source = ./ftplugin/r.vim;
# xdg.configFile."nvim/ftplugin/rmd.vim".source = ./ftplugin/rmd.vim;
# xdg.configFile."nvim/syntax/rmd.vim".source = ./syntax/rmd.vim;
};
}