Compare commits

..

No commits in common. "84c64e3f78192946cf398732459e80789524a1d7" and "316d877765e462c99102d6d9682223635e08fb89" have entirely different histories.

2 changed files with 5 additions and 5 deletions

View File

@ -8,7 +8,7 @@
}; };
}; };
outputs = { self, nixpkgs, home-manager }: outputs = inputs @ { self, nixpkgs, home-manager, ... }:
let let
user = "mandlm"; user = "mandlm";
theme = "dark"; # dark or light theme = "dark"; # dark or light
@ -17,6 +17,7 @@
nixosConfigurations = { nixosConfigurations = {
nixos-vm = nixpkgs.lib.nixosSystem { nixos-vm = nixpkgs.lib.nixosSystem {
system = "x86_64-linux"; system = "x86_64-linux";
specialArgs = inputs;
modules = [ modules = [
./configuration.nix ./configuration.nix
./users.nix ./users.nix
@ -37,6 +38,7 @@
apache = nixpkgs.lib.nixosSystem { apache = nixpkgs.lib.nixosSystem {
system = "x86_64-linux"; system = "x86_64-linux";
specialArgs = inputs;
modules = [ modules = [
./configuration.nix ./configuration.nix
./users.nix ./users.nix
@ -60,6 +62,7 @@
p330 = nixpkgs.lib.nixosSystem { p330 = nixpkgs.lib.nixosSystem {
system = "x86_64-linux"; system = "x86_64-linux";
specialArgs = inputs;
modules = [ modules = [
./configuration.nix ./configuration.nix
./users.nix ./users.nix
@ -83,6 +86,7 @@
yoga = nixpkgs.lib.nixosSystem { yoga = nixpkgs.lib.nixosSystem {
system = "x86_64-linux"; system = "x86_64-linux";
specialArgs = inputs;
modules = [ modules = [
./configuration.nix ./configuration.nix
./users.nix ./users.nix

View File

@ -60,10 +60,6 @@ in
# symlink for a stable path # symlink for a stable path
home.file.".vscode-extensions/vscode-lldb".source = pkgs.vscode-extensions.vadimcn.vscode-lldb; home.file.".vscode-extensions/vscode-lldb".source = pkgs.vscode-extensions.vadimcn.vscode-lldb;
home.sessionVariables = {
EDITOR = "nvim";
};
programs = { programs = {
neovim = { neovim = {
enable = true; enable = true;