Compare commits
5 Commits
11459f6c8f
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
e63d7aead2 | ||
|
|
3ee898c4b3 | ||
|
|
ac4b17da6a | ||
|
|
6770a680ad | ||
|
|
591d110120 |
15
applications/games.nix
Normal file
15
applications/games.nix
Normal file
@@ -0,0 +1,15 @@
|
||||
{
|
||||
config,
|
||||
pkgs,
|
||||
lib,
|
||||
...
|
||||
}:
|
||||
let
|
||||
profile = import ./profile.nix;
|
||||
in
|
||||
{
|
||||
home.packages = with pkgs; [
|
||||
lincity-ng
|
||||
luanti
|
||||
];
|
||||
}
|
||||
@@ -8,6 +8,7 @@ in
|
||||
./browser.nix
|
||||
./window-manager.nix
|
||||
../applications/matrix.nix
|
||||
../applications/games.nix
|
||||
];
|
||||
|
||||
home.packages = with pkgs; [
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
let
|
||||
dotfiles_hypr = pkgs.fetchgit {
|
||||
url = "https://git.nichkara.eu/dotfiles/hypr";
|
||||
rev = "83da92f0d64620c6503b8b2d9fa27bd79816e025";
|
||||
sha256 = "sha256-kEKJiH0oK0PuciJZ6ucinTKX5eMWxPPZXYNS1+HIcRA=";
|
||||
rev = "ba03a7d86bf564cbb9e817b895a2497da84b8bad";
|
||||
sha256 = "sha256-mbE94wrz3Gl7IE7uD5sCTyII4eQcsjFhyafeOeTgy6s=";
|
||||
};
|
||||
|
||||
dotfiles_waybar = pkgs.fetchgit {
|
||||
@@ -42,7 +42,10 @@ in
|
||||
windowManager = {
|
||||
hyprland = {
|
||||
enable = true;
|
||||
#xwayland.enable = true;
|
||||
xwayland.enable = true;
|
||||
extraConfig = ''
|
||||
exec-once = sleep 2 && nextcloud
|
||||
'';
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
@@ -5,6 +5,7 @@ in
|
||||
{
|
||||
|
||||
imports = [
|
||||
./distros-common.nix
|
||||
./file-system.nix
|
||||
./media.nix
|
||||
./ssh.nix
|
||||
|
||||
15
system-environment/distros-common.nix
Normal file
15
system-environment/distros-common.nix
Normal file
@@ -0,0 +1,15 @@
|
||||
{ pkgs, lib, ... }:
|
||||
let
|
||||
profile = import ../profile.nix;
|
||||
in
|
||||
{
|
||||
imports = [
|
||||
|
||||
];
|
||||
|
||||
home.packages = with pkgs; [
|
||||
distrobox
|
||||
distrobox-tui
|
||||
distroshelf
|
||||
];
|
||||
}
|
||||
@@ -5,7 +5,12 @@ in
|
||||
{
|
||||
programs.ssh = {
|
||||
enable = true;
|
||||
enableDefaultConfig = true;
|
||||
enableDefaultConfig = false;
|
||||
|
||||
matchBlocks."*" = {
|
||||
compression = true;
|
||||
serverAliveInterval = 60;
|
||||
};
|
||||
|
||||
extraConfig = ''
|
||||
Host git.nickr.eu
|
||||
|
||||
Reference in New Issue
Block a user