Compare commits
5 commits
8166934d86
...
4eb46904e1
Author | SHA1 | Date | |
---|---|---|---|
Tigor Hutasuhut | 4eb46904e1 | ||
Tigor Hutasuhut | a9373e58dd | ||
Tigor Hutasuhut | 5e6617bf1b | ||
Tigor Hutasuhut | c84ee3bd29 | ||
Tigor Hutasuhut | b8c0601942 |
|
@ -1,4 +1,4 @@
|
||||||
{ config, profile-path, ... }:
|
{ config, profile-path, pkgs, ... }:
|
||||||
let
|
let
|
||||||
user = config.profile.user;
|
user = config.profile.user;
|
||||||
stateVersion = config.profile.system.stateVersion;
|
stateVersion = config.profile.system.stateVersion;
|
||||||
|
@ -9,6 +9,7 @@ in
|
||||||
|
|
||||||
./programs
|
./programs
|
||||||
./modules
|
./modules
|
||||||
|
./games
|
||||||
|
|
||||||
./direnv.nix
|
./direnv.nix
|
||||||
./config/ideavim
|
./config/ideavim
|
||||||
|
@ -19,6 +20,9 @@ in
|
||||||
username = user.name;
|
username = user.name;
|
||||||
homeDirectory = "/home/${user.name}";
|
homeDirectory = "/home/${user.name}";
|
||||||
stateVersion = stateVersion;
|
stateVersion = stateVersion;
|
||||||
|
packages = with pkgs; [
|
||||||
|
gopls
|
||||||
|
];
|
||||||
};
|
};
|
||||||
programs.home-manager.enable = true;
|
programs.home-manager.enable = true;
|
||||||
systemd.user.sessionVariables = {
|
systemd.user.sessionVariables = {
|
||||||
|
|
6
home/games/default.nix
Normal file
6
home/games/default.nix
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
{ pkgs, ... }:
|
||||||
|
{
|
||||||
|
imports = [
|
||||||
|
./minecraft.nix
|
||||||
|
];
|
||||||
|
}
|
12
home/games/minecraft.nix
Normal file
12
home/games/minecraft.nix
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
{ config, lib, pkgs, ... }:
|
||||||
|
let
|
||||||
|
cfg = config.profile.games.minecraft;
|
||||||
|
inherit (lib) mkIf;
|
||||||
|
in
|
||||||
|
{
|
||||||
|
config = mkIf cfg.enable {
|
||||||
|
home.packages = with pkgs; [
|
||||||
|
prismlauncher
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
|
@ -6,6 +6,7 @@
|
||||||
./docker.nix
|
./docker.nix
|
||||||
./podman.nix
|
./podman.nix
|
||||||
./services.nix
|
./services.nix
|
||||||
|
./games.nix
|
||||||
];
|
];
|
||||||
options.profile = {
|
options.profile = {
|
||||||
|
|
||||||
|
|
9
options/games.nix
Normal file
9
options/games.nix
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
{ lib, ... }:
|
||||||
|
let
|
||||||
|
inherit (lib) mkEnableOption types;
|
||||||
|
in
|
||||||
|
{
|
||||||
|
options.profile.games = {
|
||||||
|
minecraft.enable = mkEnableOption "Minecraft";
|
||||||
|
};
|
||||||
|
}
|
|
@ -73,5 +73,7 @@
|
||||||
home.programs.foot.enable = true;
|
home.programs.foot.enable = true;
|
||||||
|
|
||||||
home.programs.zellij.enable = true;
|
home.programs.zellij.enable = true;
|
||||||
|
|
||||||
|
games.minecraft.enable = true;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -48,6 +48,8 @@
|
||||||
home.programs.zellij = {
|
home.programs.zellij = {
|
||||||
enable = true;
|
enable = true;
|
||||||
autoAttach = true;
|
autoAttach = true;
|
||||||
|
mod = "Ctrl b";
|
||||||
|
zjstatus.theme = ../home/programs/zellij/themes/zjstatus/gruvbox-dark.nix;
|
||||||
};
|
};
|
||||||
|
|
||||||
services = {
|
services = {
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{ config, lib, ... }:
|
{ config, pkgs, ... }:
|
||||||
{
|
{
|
||||||
networking.networkmanager.enable = true;
|
networking.networkmanager.enable = true;
|
||||||
networking.extraHosts = ''
|
networking.extraHosts = ''
|
||||||
|
@ -16,4 +16,16 @@
|
||||||
allowedTCPPorts = cfg.allowedTCPPorts;
|
allowedTCPPorts = cfg.allowedTCPPorts;
|
||||||
allowedUDPPorts = [ 53 ];
|
allowedUDPPorts = [ 53 ];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
services.resolved = {
|
||||||
|
enable = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
environment.etc."systemd/resolved.conf.d/10-bareksa.conf".source = (pkgs.formats.ini { }).generate "10-bareksa.conf" {
|
||||||
|
Resolve = {
|
||||||
|
# This dns server is only available when VPN is connected.
|
||||||
|
DNS = "192.168.3.215";
|
||||||
|
Domains = "~bareksa.local";
|
||||||
|
};
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue