Fixed submodule issue
This commit is contained in:
+1
-1
@@ -21,7 +21,7 @@ From https://github.com/nix-community/vagrant-nixos-plugin
|
||||
Or do this
|
||||
|
||||
#+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
|
||||
|
||||
** Installing home manager
|
||||
|
||||
+1
-1
Submodule azos-core updated: 41940a8e67...d2880fa726
Generated
+6
-6
@@ -6,17 +6,17 @@
|
||||
"nixpkgs": "nixpkgs"
|
||||
},
|
||||
"locked": {
|
||||
"lastModified": 1738844253,
|
||||
"narHash": "sha256-9+P5G/177kZ6QN+psxb2IJcwvqxZ6FjuqZ7wjSlsD0w=",
|
||||
"lastModified": 1739453429,
|
||||
"narHash": "sha256-rf/x3UoVqCX0mFTYVn5n/htz0q21HF7fbmYs8O/czaQ=",
|
||||
"ref": "refs/heads/master",
|
||||
"rev": "63005bf29562177ca11e2b7a821a8133c5cff6f1",
|
||||
"revCount": 13,
|
||||
"rev": "b9c57afc227c57a48cd4fa50153d1e2ca57664e6",
|
||||
"revCount": 4,
|
||||
"type": "git",
|
||||
"url": "file:./azos-core"
|
||||
"url": "file:azos-core"
|
||||
},
|
||||
"original": {
|
||||
"type": "git",
|
||||
"url": "file:./azos-core"
|
||||
"url": "file:azos-core"
|
||||
}
|
||||
},
|
||||
"flake-utils": {
|
||||
|
||||
@@ -15,9 +15,10 @@
|
||||
|
||||
nixpkgs = {
|
||||
overlays = [
|
||||
outputs.overlays.additions
|
||||
outputs.overlays.modifications
|
||||
outputs.overlays.unstable-packages
|
||||
inputs.azos-core.overlays.addpkgs
|
||||
# outputs.overlays.additions
|
||||
# outputs.overlays.modifications
|
||||
# outputs.overlays.unstable-packages
|
||||
];
|
||||
config = {
|
||||
allowUnfree = true;
|
||||
|
||||
@@ -26,8 +26,9 @@ virtualisation.qemu.options = [
|
||||
"-device virtserialport,chardev=ch1,id=ch1,name=com.redhat.spice.0"
|
||||
];
|
||||
};
|
||||
imports = [
|
||||
imports = [
|
||||
inputs.home-manager.nixosModules.home-manager
|
||||
outputs.nixosModules
|
||||
];
|
||||
|
||||
nixpkgs.hostPlatform = "x86_64-linux";
|
||||
@@ -103,18 +104,6 @@ imports = [
|
||||
};
|
||||
|
||||
#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;
|
||||
# https://nixos.wiki/wiki/FAQ/When_do_I_update_stateVersion
|
||||
system.stateVersion = "24.05";
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
# This file defines overlays
|
||||
{inputs, ...}: {
|
||||
# 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
|
||||
# You can change versions, add patches, set compilation flags, anything really.
|
||||
|
||||
Reference in New Issue
Block a user