1
Fork 0
mirror of https://github.com/RGBCube/ncc synced 2025-07-29 19:17:45 +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 ./nixpkgs
./nushell ./nushell
./pipewire ./pipewire
# ./plasma
./system ./system
./users ./users
./xserver ./xserver
]; ];
} }
# // //
#
# (homeManagerConfiguration { (homeManagerConfiguration {
# imports = [ home.stateVersion = "22.11";
# plasma-manager.homeManagerModules.plasma-manager })
# ];
# })

View file

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

View file

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

View file

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

View file

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