EXWM test

This commit is contained in:
2025-02-13 10:28:52 +02:00
parent 11eaed7a6c
commit 399d704105
4 changed files with 23 additions and 22 deletions
+6 -4
View File
@@ -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
+4 -5
View File
@@ -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
+12 -12
View File
@@ -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";
}