Run deadnix

This commit is contained in:
Toast 2024-03-20 13:03:05 +01:00
parent 7888103b1e
commit 430bafb0b2
49 changed files with 48 additions and 168 deletions

View file

@ -1,5 +1,5 @@
{config, ...}: {
home-manager.users.toast = {config, ...}: {
{...}: {
home-manager.users.toast = {...}: {
programs.bash = {
enable = true;
enableVteIntegration = true;

View file

@ -1,8 +1,4 @@
{
config,
pkgs,
...
}: {
{...}: {
# Use nix-index-database's comma wrapper
programs.nix-index-database.comma.enable = true;
# Run programs from the system's nixpkgs

View file

@ -1,4 +1,4 @@
{config, ...}: {
{...}: {
# The nixpkgs command-not-found script does not work with flakes, so I disable it
programs.command-not-found.enable = false;
}

View file

@ -1,8 +1,4 @@
{
config,
pkgs,
...
}: {
{pkgs, ...}: {
imports = [
./htop.nix
./nix.nix

View file

@ -1,8 +1,4 @@
{
config,
pkgs,
...
}: let
{pkgs, ...}: let
catppuccinDelta = pkgs.fetchFromGitHub {
owner = "catppuccin";
repo = "delta";

View file

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

View file

@ -1,14 +1,6 @@
{
config,
pkgs,
...
}: {
{...}: {
home-manager = {
users.toast = {
config,
pkgs,
...
}: {
users.toast = {...}: {
programs.micro = {
enable = true;
settings = {

View file

@ -1,4 +1,4 @@
{config, ...}: {
{...}: {
/*
environment.systemPackages = [ pkgs.nix-index ];
programs.bash.interactiveShellInit = ''

View file

@ -1,8 +1,4 @@
{
config,
systemPkgs,
...
}: {
{systemPkgs, ...}: {
nix = {
settings = {
auto-optimise-store = true;