remove xsession.nix

This commit is contained in:
♥ Minnie ♥ 2023-05-02 03:02:56 +08:00
parent f3e07bdac8
commit cc5de5f2b9
2 changed files with 0 additions and 34 deletions

View file

@ -11,7 +11,6 @@
# inputs.nix-colors.homeManagerModules.default
# You can also split up your configuration and import pieces of it here:
./xsession.nix
./programs/discocss.nix
./programs/git.nix
./programs/mangohud.nix

View file

@ -1,33 +0,0 @@
{ inputs, outputs, lib, config, pkgs, ... }:
{
imports = [
./services/picom.nix
];
home.packages = with pkgs; [
dmenu
feh
wezterm
xmobar
];
xsession = {
enable = true;
scriptPath = ".xsession-hm";
windowManager.xmonad = {
enable = true;
enableContribAndExtras = true;
# extraPackages = haskellPackages: with haskellPackages; [ ];
config = ../config/xmonad/xmonad.hs;
};
initExtra = ''
xrandr --output HDMI-A-0 --mode 1920x1080 --output DisplayPort-0 --mode 2560x1440 --right-of HDMI-A-0
feh --bg-scale ~/dotfiles.nix/assets/chinatown.png
'';
};
xdg.configFile = {
wezterm = { source = ../config/wezterm; recursive = true; };
};
}