move to repo

This commit is contained in:
♥ Minnie ♥ 2023-05-06 00:57:52 +08:00
parent 7aa5d0ec3f
commit 0a566e1c29
2 changed files with 0 additions and 39 deletions

View file

@ -1,10 +0,0 @@
#/bin/bash
# Setup our monitors
xrandr --output HDMI-A-0 --mode 1920x1080 --output DisplayPort-0 --mode 2560x1440 --right-of HDMI-A-0
# Apply our wallpaper
feh --bg-scale /etc/nixos/assets/chinatown.png
# Launch our window manager
exec xmonad

View file

@ -1,29 +0,0 @@
{ inputs, outputs, lib, config, pkgs, ... }:
{
# Import our modules
imports = [ ];
# Add overlays exported from flakes:
nixpkgs.overlays = [
(final: prev: {
xmonad-jsm = inputs.xmonad-jsm.packages.${pkgs.system}.xmonad-jsm;
xmobar-jsm = inputs.xmobar-jsm.packages.${pkgs.system}.xmobar-jsm;
})
];
# Install our dependencies
environment.systemPackages = with pkgs; [
dmenu
feh
xmobar-jsm
];
# Setup our window manager
services.xserver.windowManager.xmonad = {
enable = true;
enableContribAndExtras = true;
config = builtins.readFile "${inputs.xmonad-jsm}/src/xmonad.hs";
};
}