NixOS on WSL updates

This commit is contained in:
Greg Hellings
2022-12-24 00:36:36 -06:00
parent 75b1f637a0
commit 50238c7fba
9 changed files with 124 additions and 87 deletions
+5 -7
View File
@@ -1,10 +1,6 @@
name: { pkgs, lib, gui, config, ...}:
{ pkgs, lib, gui, gnome, ...}:
let
guiImports = if gui then
[ ./gui ] else [];
in {
{
imports = [
./modules
./ansible.nix
@@ -15,9 +11,11 @@ in {
./templates.nix
./vim.nix
./xonsh.nix
] ++ guiImports;
] ++ ( if gui then [ ./gui ] else []);
greg.gnome = gnome;
programs.tmux = {
enable = true;
keyMode = "vi";