mirror of
https://github.com/tuxdotrs/nixos-config.git
synced 2025-07-06 17:56:35 +05:30
formatted the code with alejandra
This commit is contained in:
@ -1,4 +1,11 @@
|
||||
{ inputs, outputs, lib, pkgs, username, ... }: {
|
||||
{
|
||||
inputs,
|
||||
outputs,
|
||||
lib,
|
||||
pkgs,
|
||||
username,
|
||||
...
|
||||
}: {
|
||||
services = {
|
||||
xserver = {
|
||||
enable = true;
|
||||
@ -34,7 +41,7 @@
|
||||
|
||||
programs.dconf.enable = true;
|
||||
|
||||
environment.systemPackages = with pkgs;[
|
||||
environment.systemPackages = with pkgs; [
|
||||
lua53Packages.lua
|
||||
wezterm
|
||||
acpi
|
||||
|
@ -1,3 +1,3 @@
|
||||
{ ... }: {
|
||||
{...}: {
|
||||
programs.hyprland.enable = true;
|
||||
}
|
||||
|
@ -1,5 +1,9 @@
|
||||
{ config, lib, pkgs, ... }: {
|
||||
|
||||
{
|
||||
config,
|
||||
lib,
|
||||
pkgs,
|
||||
...
|
||||
}: {
|
||||
security = {
|
||||
acme = {
|
||||
defaults.email = "0xtux@pm.me";
|
||||
@ -56,6 +60,6 @@
|
||||
};
|
||||
};
|
||||
|
||||
networking.firewall.allowedTCPPorts = [ 80 443 ];
|
||||
environment.systemPackages = with pkgs;[ headscale ];
|
||||
networking.firewall.allowedTCPPorts = [80 443];
|
||||
environment.systemPackages = with pkgs; [headscale];
|
||||
}
|
||||
|
@ -1,4 +1,4 @@
|
||||
{ ... }: {
|
||||
{...}: {
|
||||
programs.steam = {
|
||||
enable = true;
|
||||
};
|
||||
|
@ -1,7 +1,7 @@
|
||||
{ username, ... }: {
|
||||
{username, ...}: {
|
||||
virtualisation = {
|
||||
docker.enable = true;
|
||||
};
|
||||
|
||||
users.users.${username}.extraGroups = [ "docker" ];
|
||||
users.users.${username}.extraGroups = ["docker"];
|
||||
}
|
||||
|
@ -1,9 +1,13 @@
|
||||
{ pkgs, username, ... }: {
|
||||
{
|
||||
pkgs,
|
||||
username,
|
||||
...
|
||||
}: {
|
||||
virtualisation = {
|
||||
libvirtd.enable = true;
|
||||
};
|
||||
|
||||
users.users.${username}.extraGroups = [ "libvirtd" ];
|
||||
users.users.${username}.extraGroups = ["libvirtd"];
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
virt-manager
|
||||
|
@ -1,4 +1,4 @@
|
||||
{ ... }: {
|
||||
{...}: {
|
||||
virtualisation = {
|
||||
waydroid.enable = true;
|
||||
};
|
||||
|
Reference in New Issue
Block a user