switch to gnome for a while
This commit is contained in:
parent
a81b2a1a08
commit
a252fc03e4
4 changed files with 11 additions and 10 deletions
|
@ -66,6 +66,6 @@
|
||||||
../gfx-intel.nix
|
../gfx-intel.nix
|
||||||
../virtualbox.nix
|
../virtualbox.nix
|
||||||
../zerotier.nix
|
../zerotier.nix
|
||||||
../i3/root.nix
|
../gnome.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,9 +1,11 @@
|
||||||
{ config, pkgs, ... }:
|
{ config, pkgs, ... }:
|
||||||
{
|
{
|
||||||
|
services.xserver = {
|
||||||
services.xserver.enable = true;
|
enable = true;
|
||||||
services.xserver.displayManager.gdm.enable = true;
|
displayManager.gdm.enable = true;
|
||||||
services.xserver.displayManager.gdm.wayland = false;
|
displayManager.gdm.wayland = false;
|
||||||
services.xserver.desktopManager.gnome3.enable = true;
|
desktopManager.gnome3.enable = true;
|
||||||
|
};
|
||||||
|
users.users.cyryl.packages = with pkgs; [];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -15,7 +15,7 @@ in
|
||||||
};
|
};
|
||||||
|
|
||||||
home.sessionVariables = {
|
home.sessionVariables = {
|
||||||
TERMINAL="termite";
|
TERMINAL="alacritty";
|
||||||
CM_LAUNCHER="rofi";
|
CM_LAUNCHER="rofi";
|
||||||
PASSWORD_STORE_ENABLE_EXTENSIONS="true";
|
PASSWORD_STORE_ENABLE_EXTENSIONS="true";
|
||||||
};
|
};
|
||||||
|
@ -23,12 +23,11 @@ in
|
||||||
imports = [
|
imports = [
|
||||||
./programs/tmux.nix
|
./programs/tmux.nix
|
||||||
./programs/zsh.nix
|
./programs/zsh.nix
|
||||||
./programs/termite.nix
|
./programs/alacritty.nix
|
||||||
./programs/git.nix
|
./programs/git.nix
|
||||||
./programs/vim.nix
|
./programs/vim.nix
|
||||||
./programs.nix
|
./programs.nix
|
||||||
./links.nix
|
./links.nix
|
||||||
./i3/x.nix
|
|
||||||
./cli.nix
|
./cli.nix
|
||||||
./gui.nix
|
./gui.nix
|
||||||
./games.nix
|
./games.nix
|
||||||
|
|
|
@ -17,7 +17,7 @@
|
||||||
|
|
||||||
font = {
|
font = {
|
||||||
family = "Fira Code";
|
family = "Fira Code";
|
||||||
size = 7.5;
|
size = 8;
|
||||||
};
|
};
|
||||||
|
|
||||||
draw_bold_text_with_bright_colors = true;
|
draw_bold_text_with_bright_colors = true;
|
||||||
|
|
Loading…
Reference in a new issue