Compare commits
2 commits
316d877765
...
84c64e3f78
Author | SHA1 | Date | |
---|---|---|---|
84c64e3f78 | |||
0f0c7b634b |
2 changed files with 5 additions and 5 deletions
|
@ -8,7 +8,7 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
outputs = inputs @ { self, nixpkgs, home-manager, ... }:
|
outputs = { self, nixpkgs, home-manager }:
|
||||||
let
|
let
|
||||||
user = "mandlm";
|
user = "mandlm";
|
||||||
theme = "dark"; # dark or light
|
theme = "dark"; # dark or light
|
||||||
|
@ -17,7 +17,6 @@
|
||||||
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
|
||||||
|
@ -38,7 +37,6 @@
|
||||||
|
|
||||||
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
|
||||||
|
@ -62,7 +60,6 @@
|
||||||
|
|
||||||
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
|
||||||
|
@ -86,7 +83,6 @@
|
||||||
|
|
||||||
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
|
||||||
|
|
|
@ -60,6 +60,10 @@ 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;
|
||||||
|
|
Loading…
Add table
Reference in a new issue