1
Fork 0
mirror of https://github.com/RGBCube/ncc synced 2025-07-29 11:07:44 +00:00

Fix: Fix missing and/or invalid options

This commit is contained in:
RGBCube 2023-05-03 12:49:14 +03:00
parent c3b3c4101e
commit 20f62a6441
5 changed files with 13 additions and 14 deletions

View file

@ -11,17 +11,14 @@
./nixpkgs
./nushell
./pipewire
# ./plasma
./system
./users
./xserver
];
}
# //
#
# (homeManagerConfiguration {
# imports = [
# plasma-manager.homeManagerModules.plasma-manager
# ];
# })
//
(homeManagerConfiguration {
home.stateVersion = "22.11";
})

View file

@ -6,6 +6,6 @@ homeManagerConfiguration {
userName = "RGBCube";
userEmail = "RGBCube@users.noreply.github.com";
config.init.defaultBranch = "master";
extraConfig.init.defaultBranch = "master";
};
}

View file

@ -1,10 +1,14 @@
{ homeManagerConfiguration, ... }:
homeManagerConfiguration {
{
# Nuking nano out of orbit.
environment.defaultPackages = [];
programs.nano.syntaxHighlight = false;
}
//
(homeManagerConfiguration {
programs.neovim.enable = true;
programs.neovim = {
defaultEditor = true;
@ -16,4 +20,4 @@ homeManagerConfiguration {
# lunarVim
];
};
}
})

View file

@ -1,8 +1,6 @@
{ pkgs, ... }:
{
nixpkgs.hostPlatform = "x86_64-linux";
environment.systemPackages = import ./packages.nix pkgs;
fonts.fonts = import ./fonts.nix pkgs;
}

View file

@ -1,7 +1,7 @@
{ pkgs, ... }:
{
users.defaultShell = pkgs.nushell;
users.defaultUserShell = pkgs.nushell;
imports = [
./nixos.nix