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 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 ** Installing home manager
#+begin_src bash #+begin_src bash
@@ -75,10 +81,6 @@ nix develop .#shells.x86_64-linux.debugTexShell
* Tasks * 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 ** Station ORG
*** Move mail config *** Move mail config
*** Add mail service *** Add mail service
+4 -5
View File
@@ -15,10 +15,9 @@
nixpkgs = { nixpkgs = {
overlays = [ overlays = [
inputs.azos-core.overlays.addpkgs outputs.overlays.additions
# outputs.overlays.additions outputs.overlays.modifications
# outputs.overlays.modifications outputs.overlays.unstable-packages
# outputs.overlays.unstable-packages
]; ];
config = { config = {
allowUnfree = true; allowUnfree = true;
@@ -33,7 +32,7 @@
azos.suites.editor.enable = true; azos.suites.editor.enable = true;
azos.suites.dev.enable = true; azos.suites.dev.enable = true;
azos.suites.station.enable = true; azos.suites.station.enable = true;
# azos.suites.exwm.enable = true; azos.suites.exwm.enable = true;
azos.name = "Aner Zakobar"; azos.name = "Aner Zakobar";
# TODO: Set your username # TODO: Set your username
+12 -12
View File
@@ -104,18 +104,18 @@ imports = [
#Graphical environment #Graphical environment
services.xserver.enable = true; services.xserver.enable = true;
# services.greetd = { services.xserver.autorun = false;
# enable = true; services.greetd = {
# settings = { enable = true;
# default_session = { settings = {
# command = "startx"; default_session = {
# user = "aner"; command = "startx";
# }; user = "aner";
# }; };
# }; };
# services.xserver.displayManager.startx.enable = true; };
services.xserver.desktopManager.xfce.enable = true; services.xserver.displayManager.startx.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";
} }