modifié : firefox.nix
modifié : home.nix modifié : ../nixos/configuration.nix modifié : ../../../modules/neovim.nix
This commit is contained in:
parent
f1551db735
commit
88d76a48f4
|
@ -1,5 +1,9 @@
|
|||
{ config, pkgs, theme, ... }:
|
||||
{ config, lib, pkgs, theme, ... }:
|
||||
let
|
||||
nur-no-pkgs = import (builtins.fetchTarball "https://github.com/nix-community/NUR/archive/master.tar.gz") {};
|
||||
in
|
||||
{
|
||||
imports = lib.attrValues nur-no-pkgs.repos.moredhel.hmModules.rawModules;
|
||||
|
||||
programs.firefox = {
|
||||
enable = true;
|
||||
|
|
|
@ -3,6 +3,10 @@
|
|||
{
|
||||
imports = [
|
||||
./firefox.nix
|
||||
./packages.nix
|
||||
../../../modules/neovim.nix
|
||||
../../../modules/tmux.nix
|
||||
../../../modules/git.nix
|
||||
];
|
||||
# Home Manager needs a bit of information about you and the paths it should
|
||||
# manage.
|
||||
|
|
|
@ -10,6 +10,7 @@
|
|||
./hardware-configuration.nix
|
||||
./services.nix
|
||||
./extra_hw.nix
|
||||
./gnome.nix
|
||||
];
|
||||
|
||||
boot = {
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
{ pkgs, config, ... }: {
|
||||
programs.neovim = {
|
||||
enable = true ;
|
||||
viAlias = true;
|
||||
vimAlias = true;
|
||||
vimdiffAlias = true;
|
||||
|
|
Loading…
Reference in New Issue