NixOS on WSL updates
This commit is contained in:
+5
-7
@@ -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";
|
||||
|
||||
Reference in New Issue
Block a user