run deadnix

This commit is contained in:
insects 2024-08-21 14:29:24 +02:00
parent b0e9c6d3dd
commit 61086f393a
16 changed files with 14 additions and 16 deletions

View file

@ -1,4 +1,4 @@
{ config, lib, pkgs, ... }: { pkgs, ... }:
{ {
programs.fish = { programs.fish = {
enable = true; enable = true;

View file

@ -1,4 +1,4 @@
{ config, lib, pkgs, ... }: { pkgs, ... }:
{ {
programs.neovim = { programs.neovim = {

View file

@ -1,4 +1,4 @@
{ inputs, config, pkgs, ... }: { { pkgs, ... }: {
home.packages = with pkgs; [ home.packages = with pkgs; [
fira fira
]; ];

View file

@ -1,4 +1,4 @@
{ imports, config, pkgs, ... }: { { pkgs, ... }: {
fontProfiles = { fontProfiles = {
enable = true; enable = true;
monospace = { monospace = {

View file

@ -1,4 +1,4 @@
{ config, pkgs, inputs, lib, ... }: { { ... }: {
gtk = { gtk = {
enable = true; enable = true;
}; };

View file

@ -1,4 +1,4 @@
{ config, lib, pkgs, ... }: { { config, lib, ... }: {
programs.wofi = { programs.wofi = {
enable = true; enable = true;
settings = { settings = {

View file

@ -1,4 +1,4 @@
{ config, pkgs, lib, ... }: { { pkgs, ... }: {
home.packages = with pkgs; [ home.packages = with pkgs; [
python3 # needed for installing node.js python3 # needed for installing node.js
]; ];

View file

@ -1,4 +1,4 @@
{ lib, config, inputs, pkgs, ... }: { lib, config, pkgs, ... }:
{ {
imports = [ imports = [
../../common/desktop ../../common/desktop

View file

@ -1,5 +1,5 @@
# enoko is my framework 13-inch AMD laptop, running nixos # enoko is my framework 13-inch AMD laptop, running nixos
{ inputs, lib, pkgs, ... }: { { ... }: {
imports = [ imports = [
./global.nix ./global.nix
./common/desktop ./common/desktop

View file

@ -1,5 +1,5 @@
# yukari my main desktop workstation, running nixos # yukari my main desktop workstation, running nixos
{ pkgs, ... }: { { ... }: {
imports = [ imports = [
./global.nix ./global.nix
./desktop/hyprland ./desktop/hyprland

View file

@ -1,4 +1,4 @@
{ inputs, config, pkgs, ... }: { { pkgs, ... }: {
security.rtkit.enable = true; security.rtkit.enable = true;
services.pipewire = { services.pipewire = {
enable = true; enable = true;

View file

@ -1,4 +1,4 @@
{ lib, ... }: { { ... }: {
services.tailscale = { services.tailscale = {
enable = true; enable = true;
}; };

View file

@ -1,5 +1,4 @@
{ inputs { inputs
, outputs
, lib , lib
, config , config
, pkgs , pkgs

View file

@ -1,7 +1,7 @@
# Do not modify this file! It was generated by nixos-generate-config # Do not modify this file! It was generated by nixos-generate-config
# and may be overwritten by future invocations. Please make changes # and may be overwritten by future invocations. Please make changes
# to /etc/nixos/configuration.nix instead. # to /etc/nixos/configuration.nix instead.
{ config, lib, pkgs, modulesPath, ... }: { config, lib, modulesPath, ... }:
{ {
imports = imports =

View file

@ -1,5 +1,4 @@
{ inputs { inputs
, outputs
, lib , lib
, config , config
, pkgs , pkgs

View file

@ -6,7 +6,7 @@
# This one contains whatever you want to overlay # This one contains whatever you want to overlay
# You can change versions, add patches, set compilation flags, anything really. # You can change versions, add patches, set compilation flags, anything really.
# https://nixos.wiki/wiki/Overlays # https://nixos.wiki/wiki/Overlays
modifications = final: prev: { modifications = _final: _prev: {
# example = prev.example.overrideAttrs (oldAttrs: rec { # example = prev.example.overrideAttrs (oldAttrs: rec {
# ... # ...
# }); # });