From 9ed7d822f0c46d0b9201a60ba54960ade18bf1dc Mon Sep 17 00:00:00 2001 From: fleaz Date: Wed, 26 Jan 2022 20:45:40 +0100 Subject: [PATCH] syntax --- home-manager/default.nix | 3 ++- home-manager/modules/neovim.nix | 4 ++-- machines/cray/configuration.nix | 3 ++- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/home-manager/default.nix b/home-manager/default.nix index 419d665..9ee3127 100644 --- a/home-manager/default.nix +++ b/home-manager/default.nix @@ -247,4 +247,5 @@ in { }; }; - }; \ No newline at end of file + }; +} diff --git a/home-manager/modules/neovim.nix b/home-manager/modules/neovim.nix index c088fbf..4032b5a 100644 --- a/home-manager/modules/neovim.nix +++ b/home-manager/modules/neovim.nix @@ -1,4 +1,4 @@ -{ ... }: { +{ pkgs, ... }: { programs.vim = { enable = true; plugins = with pkgs.vimPlugins; [ vim-airline neoformat vim-monokai ]; @@ -7,4 +7,4 @@ set mouse=a ''; }; -} \ No newline at end of file +} diff --git a/machines/cray/configuration.nix b/machines/cray/configuration.nix index 0cc7f0b..3832a2b 100644 --- a/machines/cray/configuration.nix +++ b/machines/cray/configuration.nix @@ -8,12 +8,12 @@ imports = [ # Include the results of the hardware scan. ./hardware-configuration.nix - ../../modules/sound.nix ../../modules/opengl.nix ../../modules/ssh.nix ../../modules/remote-builder.nix ../../users/fleaz.nix + ../../home-manager/default.nix ]; # Use the systemd-boot EFI boot loader. @@ -33,6 +33,7 @@ # Enable CUPS services.printing.enable = true; + services.printing.drivers = with pkgs; [ splix ]; virtualisation.podman = { enable = true;