feat: add tux
This commit is contained in:
@@ -1,2 +1,4 @@
|
||||
{ pkgs, lib, config, ... }: { imports = [ ./commonPackages.nix ./hm.nix ]; }
|
||||
{ pkgs, lib, config, ... }: {
|
||||
imports = [ ./commonPackages.nix ./hm.nix ./i3.nix ];
|
||||
}
|
||||
|
||||
|
||||
@@ -5,7 +5,6 @@
|
||||
home-manager.useGlobalPkgs = true;
|
||||
home-manager.useUserPackages = true;
|
||||
home-manager.users.luca = import ../users/luca/home.nix;
|
||||
users.users.luca.shell = pkgs.zsh;
|
||||
programs.zsh.enable = true;
|
||||
};
|
||||
}
|
||||
|
||||
@@ -16,11 +16,20 @@
|
||||
settings.window.opacity = 0.6;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
services.picom = {
|
||||
enable = true;
|
||||
vSync = true;
|
||||
services.picom = {
|
||||
enable = true;
|
||||
vSync = true;
|
||||
};
|
||||
|
||||
xsession.windowManager.i3 = {
|
||||
enable = true;
|
||||
config = {
|
||||
modifier = "Mod4";
|
||||
defaultWorkspace = "workspace number 1";
|
||||
terminal = "alacritty";
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user