diff --git a/README.org b/README.org index 1b0cacd..2246d65 100644 --- a/README.org +++ b/README.org @@ -18,6 +18,12 @@ nix build .#nixosConfigurations.vm.config.system.build.vm 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 +#+end_src + ** Installing home manager #+begin_src bash @@ -75,10 +81,6 @@ nix develop .#shells.x86_64-linux.debugTexShell * Tasks -** Seperate repos - -Two flakes, make the first one flake, have it just import the other one as an input from a subdir. - ** Station ORG *** Move mail config *** Add mail service diff --git a/azos-core b/azos-core index 63005bf..41940a8 160000 --- a/azos-core +++ b/azos-core @@ -1 +1 @@ -Subproject commit 63005bf29562177ca11e2b7a821a8133c5cff6f1 +Subproject commit 41940a8e67b558f7daf0c4ed2fbedd27ab632e77 diff --git a/home-manager/home.nix b/home-manager/home.nix index 05dfef1..ee106b0 100644 --- a/home-manager/home.nix +++ b/home-manager/home.nix @@ -15,10 +15,9 @@ nixpkgs = { overlays = [ - inputs.azos-core.overlays.addpkgs - # outputs.overlays.additions - # outputs.overlays.modifications - # outputs.overlays.unstable-packages + outputs.overlays.additions + outputs.overlays.modifications + outputs.overlays.unstable-packages ]; config = { allowUnfree = true; @@ -33,7 +32,7 @@ azos.suites.editor.enable = true; azos.suites.dev.enable = true; azos.suites.station.enable = true; - # azos.suites.exwm.enable = true; + azos.suites.exwm.enable = true; azos.name = "Aner Zakobar"; # TODO: Set your username diff --git a/nixos/configuration-vm.nix b/nixos/configuration-vm.nix index 53b9dd2..d5f6b9f 100644 --- a/nixos/configuration-vm.nix +++ b/nixos/configuration-vm.nix @@ -104,18 +104,18 @@ imports = [ #Graphical environment services.xserver.enable = true; - # 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.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"; }