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 = {
|
programs.firefox = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
|
@ -3,6 +3,10 @@
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
./firefox.nix
|
./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
|
# Home Manager needs a bit of information about you and the paths it should
|
||||||
# manage.
|
# manage.
|
||||||
|
|
|
@ -10,6 +10,7 @@
|
||||||
./hardware-configuration.nix
|
./hardware-configuration.nix
|
||||||
./services.nix
|
./services.nix
|
||||||
./extra_hw.nix
|
./extra_hw.nix
|
||||||
|
./gnome.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
boot = {
|
boot = {
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
{ pkgs, config, ... }: {
|
{ pkgs, config, ... }: {
|
||||||
programs.neovim = {
|
programs.neovim = {
|
||||||
enable = true ;
|
|
||||||
viAlias = true;
|
viAlias = true;
|
||||||
vimAlias = true;
|
vimAlias = true;
|
||||||
vimdiffAlias = true;
|
vimdiffAlias = true;
|
||||||
|
|
Loading…
Reference in New Issue