mirror of
https://github.com/kp2pml30/dotfiles.git
synced 2026-02-16 23:34:42 +04:00
add more default packages
This commit is contained in:
parent
1d0f0288a8
commit
5057d037cb
6 changed files with 29 additions and 2 deletions
|
|
@ -371,6 +371,8 @@ globalkeys = gears.table.join(
|
||||||
{description = "run prompt", group = "launcher"}),
|
{description = "run prompt", group = "launcher"}),
|
||||||
awful.key({ modkey }, "d", function () awful.spawn("rofi -show drun -drun-show-actions") end,
|
awful.key({ modkey }, "d", function () awful.spawn("rofi -show drun -drun-show-actions") end,
|
||||||
{description = "run prompt", group = "launcher"}),
|
{description = "run prompt", group = "launcher"}),
|
||||||
|
awful.key({ modkey }, ".", function () awful.spawn("rofimoji") end,
|
||||||
|
{description = "run prompt", group = "launcher"}),
|
||||||
|
|
||||||
awful.key({ modkey }, "x",
|
awful.key({ modkey }, "x",
|
||||||
function ()
|
function ()
|
||||||
|
|
|
||||||
|
|
@ -70,4 +70,6 @@
|
||||||
networking = {
|
networking = {
|
||||||
useDHCP = lib.mkDefault true;
|
useDHCP = lib.mkDefault true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
virtualisation.docker.enable = true;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -28,6 +28,7 @@ in {
|
||||||
./home.nix
|
./home.nix
|
||||||
./user.nix
|
./user.nix
|
||||||
./neovim.nix
|
./neovim.nix
|
||||||
|
./tui.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
config = {
|
config = {
|
||||||
|
|
@ -57,8 +58,6 @@ in {
|
||||||
|
|
||||||
programs = {
|
programs = {
|
||||||
fish.enable = true;
|
fish.enable = true;
|
||||||
tmux.enable = true;
|
|
||||||
yazi.enable = true;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
|
|
|
||||||
|
|
@ -39,6 +39,12 @@ in lib.mkIf cfg.xserver {
|
||||||
|
|
||||||
programs.dconf.enable = true;
|
programs.dconf.enable = true;
|
||||||
|
|
||||||
|
users.users.${cfg.username} = {
|
||||||
|
packages = with pkgs; [
|
||||||
|
rofimoji
|
||||||
|
];
|
||||||
|
};
|
||||||
|
|
||||||
home-manager.users.${cfg.username} = {
|
home-manager.users.${cfg.username} = {
|
||||||
programs.rofi = {
|
programs.rofi = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
|
||||||
17
nix/personal/tui.nix
Normal file
17
nix/personal/tui.nix
Normal file
|
|
@ -0,0 +1,17 @@
|
||||||
|
{ config
|
||||||
|
, pkgs
|
||||||
|
, inputs
|
||||||
|
, lib
|
||||||
|
, ...
|
||||||
|
}@args:
|
||||||
|
let
|
||||||
|
cfg = config.kp2pml30;
|
||||||
|
in {
|
||||||
|
config = {
|
||||||
|
programs = {
|
||||||
|
tmux.enable = true;
|
||||||
|
yazi.enable = true;
|
||||||
|
htop.enable = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
@ -13,6 +13,7 @@ in {
|
||||||
"wheel" # sudo
|
"wheel" # sudo
|
||||||
"networkmanager"
|
"networkmanager"
|
||||||
"dialout" "uucp" # esp32
|
"dialout" "uucp" # esp32
|
||||||
|
"docker"
|
||||||
];
|
];
|
||||||
shell = pkgs.fish;
|
shell = pkgs.fish;
|
||||||
hashedPassword = "$6$UK6oHr2gPRYD4Rak$lgF.mYReC0jahNuI4kt0j/CsrajVzMprvp3HgjKwwsjYHU6/Ur9jfROXZbKhhpyCLRmnlCpWeRCbHEYO/jhIv/";
|
hashedPassword = "$6$UK6oHr2gPRYD4Rak$lgF.mYReC0jahNuI4kt0j/CsrajVzMprvp3HgjKwwsjYHU6/Ur9jfROXZbKhhpyCLRmnlCpWeRCbHEYO/jhIv/";
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue