initial commit
This commit is contained in:
7
modules/apps/browser.nix
Normal file
7
modules/apps/browser.nix
Normal file
@@ -0,0 +1,7 @@
|
||||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
environment.systemPackages = with pkgs; [
|
||||
brave
|
||||
];
|
||||
}
|
||||
7
modules/apps/communication.nix
Normal file
7
modules/apps/communication.nix
Normal file
@@ -0,0 +1,7 @@
|
||||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
environment.systemPackages = with pkgs; [
|
||||
discord
|
||||
];
|
||||
}
|
||||
10
modules/apps/default.nix
Normal file
10
modules/apps/default.nix
Normal file
@@ -0,0 +1,10 @@
|
||||
{ ... }:
|
||||
|
||||
{
|
||||
imports = [
|
||||
./terminal.nix
|
||||
./browser.nix
|
||||
./communication.nix
|
||||
./dev.nix
|
||||
];
|
||||
}
|
||||
12
modules/apps/dev.nix
Normal file
12
modules/apps/dev.nix
Normal file
@@ -0,0 +1,12 @@
|
||||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
environment.systemPackages = with pkgs; [
|
||||
neovim
|
||||
git
|
||||
uv
|
||||
rustup
|
||||
antigravity-cli
|
||||
pi-coding-agent
|
||||
];
|
||||
}
|
||||
15
modules/apps/gaming.nix
Normal file
15
modules/apps/gaming.nix
Normal file
@@ -0,0 +1,15 @@
|
||||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
programs.steam = {
|
||||
enable = true;
|
||||
remotePlay.openFirewall = false;
|
||||
dedicatedServer.openFirewall = false;
|
||||
gamescopeSession.enable = false;
|
||||
};
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
mangohud
|
||||
gamemode
|
||||
];
|
||||
}
|
||||
9
modules/apps/terminal.nix
Normal file
9
modules/apps/terminal.nix
Normal file
@@ -0,0 +1,9 @@
|
||||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
environment.systemPackages = with pkgs; [
|
||||
foot
|
||||
zoxide
|
||||
fzf
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user