FINALLY WOKING BABEEE
This commit is contained in:
parent
49984e72ab
commit
f1451c6995
3 changed files with 18 additions and 17 deletions
|
@ -17,22 +17,22 @@
|
|||
};
|
||||
};
|
||||
programs = {
|
||||
# vesktop.enable = true;
|
||||
vesktop.enable = true;
|
||||
btop.enable = true;
|
||||
mpv.enable = true;
|
||||
#neovim.enable = true;
|
||||
git = {
|
||||
enable = true;
|
||||
userName = "vali";
|
||||
userEmail = "valentin@kaas.cc";
|
||||
defaultBranch = "master";
|
||||
};
|
||||
i3.enable = true;
|
||||
#neovim.enable = true;
|
||||
#git = {
|
||||
# enable = true;
|
||||
# userName = "vali";
|
||||
# userEmail = "valentin@kaas.cc";
|
||||
# defaultBranch = "master";
|
||||
#};
|
||||
starship.enable = true;
|
||||
zsh = {
|
||||
enable = true;
|
||||
profiling = false;
|
||||
};
|
||||
#i3 = { };
|
||||
};
|
||||
services = {
|
||||
pipewire.enable = true;
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
{ pkgs, lib, config, ...}:
|
||||
{ pkgs, lib, config, callPackage, ... }:
|
||||
with lib; let
|
||||
cfg = config.myOptions.programs.i3;
|
||||
in {
|
||||
options.myOptions.programs.i3.enable = mkEnableOption "i3";
|
||||
|
||||
{
|
||||
options = {
|
||||
i3wm.enable = lib.mkEnableOption "enable i3wm";
|
||||
};
|
||||
config = lib.mkIf config.i3wm.enable {
|
||||
config = mkIf cfg.enable {
|
||||
services.xserver = {
|
||||
enable = true;
|
||||
desktopManager = {
|
||||
|
|
|
@ -20,6 +20,7 @@ in {
|
|||
libreoffice-fresh
|
||||
qbittorrent
|
||||
ventoy-full
|
||||
lazygit
|
||||
zip
|
||||
unzip
|
||||
gcc
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue