dustbowl: make swayidle a systemd service + run nixpkgs-fmt

This commit is contained in:
joachimschmidt557 2022-07-17 14:07:16 +02:00
parent 989e4f9555
commit 9757bf7ff6
No known key found for this signature in database
GPG key ID: E0B575BE2884ACC5
9 changed files with 41 additions and 31 deletions

View file

@ -34,10 +34,12 @@
nixosConfigurations = {
dustbowl = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [ (import ./nixos/dustbowl.nix {
emacs-overlay = emacs-overlay;
nixpkgs = nixpkgs;
}) ];
modules = [
(import ./nixos/dustbowl.nix {
emacs-overlay = emacs-overlay;
nixpkgs = nixpkgs;
})
];
};
};