mirror of
https://github.com/nix-community/home-manager
synced 2024-11-06 03:09:45 +01:00
21 lines
378 B
Nix
21 lines
378 B
Nix
|
{ config, lib, pkgs, ... }:
|
||
|
|
||
|
with lib;
|
||
|
|
||
|
{
|
||
|
config = {
|
||
|
xsession.windowManager.i3 = {
|
||
|
enable = true;
|
||
|
config = null;
|
||
|
};
|
||
|
|
||
|
nixpkgs.overlays = [ (import ./i3-overlay.nix) ];
|
||
|
|
||
|
nmt.script = ''
|
||
|
assertFileExists home-files/.config/i3/config
|
||
|
assertFileContent home-files/.config/i3/config \
|
||
|
${pkgs.writeText "expected" "\n"}
|
||
|
'';
|
||
|
};
|
||
|
}
|