Extract xsession
This commit is contained in:
parent
74b0ab107f
commit
97bd4eba35
2 changed files with 23 additions and 15 deletions
|
@ -2,7 +2,6 @@
|
||||||
|
|
||||||
let
|
let
|
||||||
unstableTarball = fetchTarball https://github.com/NixOS/nixpkgs-channels/archive/nixos-unstable.tar.gz;
|
unstableTarball = fetchTarball https://github.com/NixOS/nixpkgs-channels/archive/nixos-unstable.tar.gz;
|
||||||
mod = "Mod4";
|
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
nixpkgs.config = {
|
nixpkgs.config = {
|
||||||
|
@ -30,25 +29,13 @@ in
|
||||||
home.sessionVariables = {
|
home.sessionVariables = {
|
||||||
TERMINAL="alacritty";
|
TERMINAL="alacritty";
|
||||||
};
|
};
|
||||||
xsession = {
|
|
||||||
enable = true;
|
|
||||||
windowManager.i3 = {
|
|
||||||
enable = true;
|
|
||||||
config = {
|
|
||||||
modifier = mod;
|
|
||||||
keybindings = {
|
|
||||||
"${mod}+Return" = "exec i3-sensible-terminal";
|
|
||||||
"${mod}+Shift+q" = "kill";
|
|
||||||
"${mod}+d" = "exec ${pkgs.rofi}/bin/rofi -show combi -combi-modi window#run#ssh -modi combi";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
imports = [
|
imports = [
|
||||||
./programs/tmux.nix
|
./programs/tmux.nix
|
||||||
./programs/zsh.nix
|
./programs/zsh.nix
|
||||||
./programs/vim.nix
|
./programs/vim.nix
|
||||||
./programs/alacritty.nix
|
./programs/alacritty.nix
|
||||||
|
./user-xsession.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
programs = {
|
programs = {
|
||||||
|
|
21
nixos/user-xsession.nix
Normal file
21
nixos/user-xsession.nix
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
{ config, pkgs, ... }:
|
||||||
|
let
|
||||||
|
mod = "Mod4";
|
||||||
|
in
|
||||||
|
{
|
||||||
|
xsession = {
|
||||||
|
enable = true;
|
||||||
|
windowManager.i3 = {
|
||||||
|
enable = true;
|
||||||
|
config = {
|
||||||
|
modifier = mod;
|
||||||
|
keybindings = {
|
||||||
|
"${mod}+Return" = "exec i3-sensible-terminal";
|
||||||
|
"${mod}+Shift+q" = "kill";
|
||||||
|
"${mod}+d" = "exec ${pkgs.rofi}/bin/rofi -show combi -combi-modi window#run#ssh -modi combi";
|
||||||
|
"${mod}+f" = "fullscreen toggle";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue