Fixed submodule issue

This commit is contained in:
2025-02-14 01:09:19 +02:00
parent 399d704105
commit 8ec7f0a662
6 changed files with 15 additions and 25 deletions
+1 -1
View File
@@ -21,7 +21,7 @@ From https://github.com/nix-community/vagrant-nixos-plugin
Or do this Or do this
#+begin_src bash #+begin_src bash
git add azos-core && nix flake lock --update-input azos-core && nix build .#nixosConfigurations.vm.config.system.build.vm nix build '.?submodules=1#nixosConfigurations.vm.config.system.build.vm'
#+end_src #+end_src
** Installing home manager ** Installing home manager
Generated
+6 -6
View File
@@ -6,17 +6,17 @@
"nixpkgs": "nixpkgs" "nixpkgs": "nixpkgs"
}, },
"locked": { "locked": {
"lastModified": 1738844253, "lastModified": 1739453429,
"narHash": "sha256-9+P5G/177kZ6QN+psxb2IJcwvqxZ6FjuqZ7wjSlsD0w=", "narHash": "sha256-rf/x3UoVqCX0mFTYVn5n/htz0q21HF7fbmYs8O/czaQ=",
"ref": "refs/heads/master", "ref": "refs/heads/master",
"rev": "63005bf29562177ca11e2b7a821a8133c5cff6f1", "rev": "b9c57afc227c57a48cd4fa50153d1e2ca57664e6",
"revCount": 13, "revCount": 4,
"type": "git", "type": "git",
"url": "file:./azos-core" "url": "file:azos-core"
}, },
"original": { "original": {
"type": "git", "type": "git",
"url": "file:./azos-core" "url": "file:azos-core"
} }
}, },
"flake-utils": { "flake-utils": {
+4 -3
View File
@@ -15,9 +15,10 @@
nixpkgs = { nixpkgs = {
overlays = [ overlays = [
outputs.overlays.additions inputs.azos-core.overlays.addpkgs
outputs.overlays.modifications # outputs.overlays.additions
outputs.overlays.unstable-packages # outputs.overlays.modifications
# outputs.overlays.unstable-packages
]; ];
config = { config = {
allowUnfree = true; allowUnfree = true;
+2 -13
View File
@@ -26,8 +26,9 @@ virtualisation.qemu.options = [
"-device virtserialport,chardev=ch1,id=ch1,name=com.redhat.spice.0" "-device virtserialport,chardev=ch1,id=ch1,name=com.redhat.spice.0"
]; ];
}; };
imports = [ imports = [
inputs.home-manager.nixosModules.home-manager inputs.home-manager.nixosModules.home-manager
outputs.nixosModules
]; ];
nixpkgs.hostPlatform = "x86_64-linux"; nixpkgs.hostPlatform = "x86_64-linux";
@@ -103,18 +104,6 @@ imports = [
}; };
#Graphical environment #Graphical environment
services.xserver.enable = true;
services.xserver.autorun = false;
services.greetd = {
enable = true;
settings = {
default_session = {
command = "startx";
user = "aner";
};
};
};
services.xserver.displayManager.startx.enable = true;
# services.xserver.desktopManager.xfce.enable = true; # services.xserver.desktopManager.xfce.enable = true;
# https://nixos.wiki/wiki/FAQ/When_do_I_update_stateVersion # https://nixos.wiki/wiki/FAQ/When_do_I_update_stateVersion
system.stateVersion = "24.05"; system.stateVersion = "24.05";
+1 -1
View File
@@ -1,7 +1,7 @@
# This file defines overlays # This file defines overlays
{inputs, ...}: { {inputs, ...}: {
# This one brings our custom packages from the 'pkgs' directory # This one brings our custom packages from the 'pkgs' directory
# additions = final: _prev: import ./pkgs {pkgs = final;}; additions = final: _prev: import ./pkgs {pkgs = final;};
# This one contains whatever you want to overlay # This one contains whatever you want to overlay
# You can change versions, add patches, set compilation flags, anything really. # You can change versions, add patches, set compilation flags, anything really.