feat/setup #1
@@ -82,14 +82,8 @@
|
||||
# Formatter output
|
||||
formatter.${system} = pkgs.alejandra;
|
||||
|
||||
# Explicit homeManagerModules output (needed for home-manager packages)
|
||||
# Define homeManagerModules output for home-manager integration
|
||||
homeManagerModules = {
|
||||
default = import ./home/programs/group/flake.nix args;
|
||||
};
|
||||
|
||||
|
||||
# Update to modern syntax (no defaultApp)
|
||||
|
||||
nixosConfigurations = {
|
||||
thinkpad = import ./hosts/laptop/flake.nix args;
|
||||
home-pc = import ./hosts/home-pc/flake.nix args;
|
||||
|
||||
+17
-15
@@ -19,22 +19,24 @@
|
||||
in {
|
||||
packages.${system}.nvim = nvimConfig.neovim;
|
||||
|
||||
apps.${system}.nvim = {
|
||||
type = "app";
|
||||
program = "${nvimConfig.neovim}/bin/nvim";
|
||||
meta = {
|
||||
description = "Improved Vim-based text editor";
|
||||
homepage = "https://neovim.io";
|
||||
license = "Apache-2.0";
|
||||
apps.${system} = {
|
||||
nvim = {
|
||||
type = "app";
|
||||
program = "${nvimConfig.neovim}/bin/nvim";
|
||||
meta = {
|
||||
description = "Improved Vim-based text editor";
|
||||
homepage = "https://neovim.io";
|
||||
license = "Apache-2.0";
|
||||
};
|
||||
};
|
||||
};
|
||||
defaultApp.${system} = {
|
||||
type = "app";
|
||||
program = "${nvimConfig.neovim}/bin/nvim";
|
||||
meta = {
|
||||
description = "Improved Vim-based text editor";
|
||||
homepage = "https://neovim.io";
|
||||
license = "Apache-2.0";
|
||||
default = {
|
||||
type = "app";
|
||||
program = "${nvimConfig.neovim}/bin/nvim";
|
||||
meta = {
|
||||
description = "Improved Vim-based text editor";
|
||||
homepage = "https://neovim.io";
|
||||
license = "Apache-2.0";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
@@ -28,7 +28,7 @@
|
||||
../../home/system/udiskie
|
||||
|
||||
./variables.nix # Mostly user-specific configuration
|
||||
./secrets # CHANGEME: You should probably remove this line, this is where I store my secrets
|
||||
#./secrets # CHANGEME: You should probably remove this line, this is where I store my secrets
|
||||
];
|
||||
|
||||
home = {
|
||||
|
||||
@@ -30,7 +30,7 @@
|
||||
../../home/system/udiskie
|
||||
|
||||
./variables.nix # Mostly user-specific configuration
|
||||
./secrets # CHANGEME: You should probably remove this line, this is where I store my secrets
|
||||
#./secrets # CHANGEME: You should probably remove this line, this is where I store my secrets
|
||||
];
|
||||
|
||||
home = {
|
||||
|
||||
+1
-1
@@ -28,7 +28,7 @@
|
||||
../../home/system/udiskie
|
||||
|
||||
./variables.nix # Mostly user-specific configuration
|
||||
./secrets # CHANGEME: You should probably remove this line, this is where I store my secrets
|
||||
#./secrets # CHANGEME: You should probably remove this line, this is where I store my secrets
|
||||
];
|
||||
|
||||
home = {
|
||||
|
||||
Reference in New Issue
Block a user