mirror of
https://codeberg.org/jopejoe1/nix-conf.git
synced 2025-01-01 16:46:34 +01:00
Used deadnix to clean-up code
This commit is contained in:
parent
fb0241023e
commit
23fe41c671
9 changed files with 10 additions and 12 deletions
|
@ -30,10 +30,8 @@
|
|||
};
|
||||
|
||||
outputs = inputs@{
|
||||
self,
|
||||
nixpkgs,
|
||||
home-manager,
|
||||
prismlauncher,
|
||||
nur,
|
||||
nixos-hardware,
|
||||
...
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ pkgs, ... }:
|
||||
{ ... }:
|
||||
|
||||
{
|
||||
security.rtkit.enable = true;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ pkgs, ... }:
|
||||
{ ... }:
|
||||
|
||||
{
|
||||
hardware.bluetooth.enable = true;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ pkgs, ... }:
|
||||
{ ... }:
|
||||
|
||||
{
|
||||
services.minecraft-server = {
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ pkgs, ... }:
|
||||
{ ... }:
|
||||
|
||||
{
|
||||
hardware.steam-hardware.enable = true;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ config, pkgs, lib, ... }:
|
||||
{ config, pkgs, ... }:
|
||||
|
||||
let hcfg = config.home-manager.users.jopejoe1;
|
||||
in {
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ pkgs, prismlauncher, nur, self, ... }:
|
||||
{ prismlauncher, nur, self, ... }:
|
||||
|
||||
{
|
||||
nixpkgs = {
|
||||
|
@ -8,9 +8,9 @@
|
|||
prismlauncher.overlays.default
|
||||
nur.overlay
|
||||
|
||||
(slef: super: {
|
||||
(_self: super: {
|
||||
|
||||
tela-icon-theme = super.tela-icon-theme.overrideAttrs (old: {
|
||||
tela-icon-theme = super.tela-icon-theme.overrideAttrs (_old: {
|
||||
src = self.inputs.tela-icon-theme;
|
||||
});
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# Do not modify this file! It was generated by ‘nixos-generate-config’
|
||||
# and may be overwritten by future invocations. Please make changes
|
||||
# to /etc/nixos/configuration.nix instead.
|
||||
{ config, lib, pkgs, modulesPath, ... }:
|
||||
{ config, lib, modulesPath, ... }:
|
||||
|
||||
{
|
||||
imports = [ (modulesPath + "/installer/scan/not-detected.nix")
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# Do not modify this file! It was generated by ‘nixos-generate-config’
|
||||
# and may be overwritten by future invocations. Please make changes
|
||||
# to /etc/nixos/configuration.nix instead.
|
||||
{ config, lib, pkgs, modulesPath, ... }:
|
||||
{ lib, modulesPath, ... }:
|
||||
|
||||
{
|
||||
imports = [ (modulesPath + "/installer/scan/not-detected.nix")
|
||||
|
|
Loading…
Reference in a new issue