some cleanup

This commit is contained in:
LunarAkai 2025-03-15 16:19:21 +01:00
commit ccac697b26
11 changed files with 22 additions and 34 deletions

View file

@ -0,0 +1,13 @@
{pkgs, ...}: {
imports = [
#./zsh
];
home.packages = with pkgs; [
fd # better find
tldr # because 'man' is way too long for my brain :c
nixd # nix lsp
alejandra # formatter
];
}

View file

@ -1,9 +1,6 @@
{ {
inputs,
lib, lib,
pkgs,
config, config,
outputs,
... ...
}: { }: {
imports = [ imports = [

View file

@ -1,18 +1,10 @@
{ {...}: {
config,
inputs,
lib,
outputs,
pkgs,
...
}: {
imports = [ imports = [
./common ./common
./categories/cli
]; ];
# The home.packages option allows you to install Nix packages into your # The home.packages option allows you to install Nix packages into your
# environment. # environment.
home.packages = with pkgs; [
alejandra
];
} }

View file

@ -1,7 +1,6 @@
{ {
inputs, inputs,
outputs, outputs,
pkgs,
... ...
}: { }: {
imports = [ imports = [
@ -16,8 +15,5 @@
inherit inputs outputs; inherit inputs outputs;
}; };
environment.systemPackages = with pkgs; [
];
system.stateVersion = "24.11"; system.stateVersion = "24.11";
} }

View file

@ -1,6 +1,4 @@
{pkgs, ...}: { {...}: {
# dynamic linking # dynamic linking
programs.nix-ld.enable = true; programs.nix-ld.enable = true;
programs.nix-ld.libraries = with pkgs; [
];
} }

View file

@ -1,8 +1,4 @@
{ {...}: {
inputs,
lib,
...
}: {
# flakes # flakes
nix = { nix = {
settings = { settings = {

View file

@ -1,7 +1,6 @@
{ {
pkgs, pkgs,
config, config,
lib,
... ...
}: { }: {
# Define a user account. Don't forget to set a password with passwd. # Define a user account. Don't forget to set a password with passwd.
@ -9,8 +8,8 @@
isNormalUser = true; isNormalUser = true;
description = "luna"; description = "luna";
extraGroups = [ extraGroups = [
"networkmanager" "networkmanager"
"wheel" "wheel"
]; ];
packages = with pkgs; [ packages = with pkgs; [
# thunderbird # thunderbird

View file

@ -2,8 +2,6 @@
# your system. Help is available in the configuration.nix(5) man page # your system. Help is available in the configuration.nix(5) man page
# and in the NixOS manual (accessible by running nixos-help). # and in the NixOS manual (accessible by running nixos-help).
{ {
config,
lib,
pkgs, pkgs,
inputs, inputs,
... ...
@ -65,11 +63,11 @@
# ssh agent # ssh agent
programs.ssh.startAgent = true; programs.ssh.startAgent = true;
hardware.ckb-next.enable = true;
programs.steam = { programs.steam = {
enable = true; enable = true;
remotePlay.openFirewall = true; # Open ports in the firewall for Steam Remote Play remotePlay.openFirewall = true; # Open ports in the firewall for Steam Remote Play
dedicatedServer.openFirewall = true; # Open ports in the firewall for Source Dedicated Server dedicatedServer.openFirewall = true; # Open ports in the firewall for Source Dedicated Server
}; };
hardware.ckb-next.enable = true;
} }

View file

@ -4,7 +4,6 @@
{ {
config, config,
lib, lib,
pkgs,
modulesPath, modulesPath,
... ...
}: { }: {