remove xsession.nix
This commit is contained in:
parent
f3e07bdac8
commit
cc5de5f2b9
|
@ -11,7 +11,6 @@
|
||||||
# inputs.nix-colors.homeManagerModules.default
|
# inputs.nix-colors.homeManagerModules.default
|
||||||
|
|
||||||
# You can also split up your configuration and import pieces of it here:
|
# You can also split up your configuration and import pieces of it here:
|
||||||
./xsession.nix
|
|
||||||
./programs/discocss.nix
|
./programs/discocss.nix
|
||||||
./programs/git.nix
|
./programs/git.nix
|
||||||
./programs/mangohud.nix
|
./programs/mangohud.nix
|
||||||
|
|
|
@ -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; };
|
|
||||||
};
|
|
||||||
}
|
|
Loading…
Reference in a new issue