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:
parent
c3b3c4101e
commit
20f62a6441
5 changed files with 13 additions and 14 deletions
|
@ -11,17 +11,14 @@
|
|||
./nixpkgs
|
||||
./nushell
|
||||
./pipewire
|
||||
# ./plasma
|
||||
./system
|
||||
./users
|
||||
./xserver
|
||||
];
|
||||
}
|
||||
|
||||
# //
|
||||
#
|
||||
# (homeManagerConfiguration {
|
||||
# imports = [
|
||||
# plasma-manager.homeManagerModules.plasma-manager
|
||||
# ];
|
||||
# })
|
||||
//
|
||||
|
||||
(homeManagerConfiguration {
|
||||
home.stateVersion = "22.11";
|
||||
})
|
||||
|
|
|
@ -6,6 +6,6 @@ homeManagerConfiguration {
|
|||
userName = "RGBCube";
|
||||
userEmail = "RGBCube@users.noreply.github.com";
|
||||
|
||||
config.init.defaultBranch = "master";
|
||||
extraConfig.init.defaultBranch = "master";
|
||||
};
|
||||
}
|
||||
|
|
|
@ -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
|
||||
];
|
||||
};
|
||||
}
|
||||
})
|
||||
|
|
|
@ -1,8 +1,6 @@
|
|||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
nixpkgs.hostPlatform = "x86_64-linux";
|
||||
|
||||
environment.systemPackages = import ./packages.nix pkgs;
|
||||
fonts.fonts = import ./fonts.nix pkgs;
|
||||
}
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
users.defaultShell = pkgs.nushell;
|
||||
users.defaultUserShell = pkgs.nushell;
|
||||
|
||||
imports = [
|
||||
./nixos.nix
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue