tweaks to the i3 configuration now that Im actually testing on real hardware.
This commit is contained in:
parent
2bcc6c86aa
commit
d3e13cf0f0
9 changed files with 52 additions and 11 deletions
|
|
@ -22,6 +22,8 @@
|
|||
};
|
||||
xkb.options = "ctrl:nocaps,compose:rctrl";
|
||||
};
|
||||
fonts.fontDir.enable = true;
|
||||
fonts.enableDefaultPackages = true;
|
||||
home-manager.users.${config.host.details.user} = {config, ...}: {
|
||||
home.packages = with pkgs; [
|
||||
maim
|
||||
|
|
@ -49,7 +51,7 @@
|
|||
enable = true;
|
||||
config = {
|
||||
modifier = mod;
|
||||
terminal = "kitty";
|
||||
terminal = "ghostty";
|
||||
menu = "rofi -show drun";
|
||||
defaultWorkspace = "workspace ${ws1}";
|
||||
keybindings = {
|
||||
|
|
@ -234,7 +236,7 @@
|
|||
};
|
||||
};
|
||||
imports = [
|
||||
../../home-manager/kitty.nix
|
||||
../../home-manager/ghostty.nix
|
||||
../../home-manager/rofi.nix
|
||||
../../home-manager/dunst.nix
|
||||
../../home-manager/feh.nix
|
||||
|
|
|
|||
|
|
@ -4,6 +4,13 @@
|
|||
lib,
|
||||
...
|
||||
}: {
|
||||
fonts.packages = with pkgs; [
|
||||
fira-code
|
||||
monocraft
|
||||
miracode
|
||||
nerd-fonts.symbols-only
|
||||
];
|
||||
services.upower.enable = config.host.details.isLaptop;
|
||||
home-manager.users.${config.host.details.user} = {
|
||||
config,
|
||||
osConfig,
|
||||
|
|
@ -13,8 +20,7 @@
|
|||
xsession.windowManager.i3.config.bars = [
|
||||
{
|
||||
fonts = {
|
||||
names = ["FiraCode Nerd Font"];
|
||||
style = "Mono";
|
||||
names = ["Fira Code"];
|
||||
size = 10.0;
|
||||
};
|
||||
position = "bottom";
|
||||
|
|
|
|||
|
|
@ -4,15 +4,16 @@
|
|||
lib,
|
||||
...
|
||||
}: {
|
||||
environment.systemPackages = with pkgs; [
|
||||
betterlockscreen
|
||||
];
|
||||
home-manager.users.${config.host.details.user} = {
|
||||
config,
|
||||
osConfig,
|
||||
lib,
|
||||
...
|
||||
}: {
|
||||
home.packages = with pkgs; [
|
||||
betterlockscreen
|
||||
];
|
||||
|
||||
xsession.windowManager.i3.config = {
|
||||
keybindings = let
|
||||
mod = config.xsession.windowManager.i3.config.modifier;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue