Modularize my Home-Manager configuration #1

Merged
JustScreaMy merged 7 commits from modularize-home-manager into master 2024-11-11 19:36:19 +01:00
14 changed files with 4 additions and 17 deletions
Showing only changes of commit 755c55c976 - Show all commits

View file

@ -1,7 +1,6 @@
{
lib,
config,
pkgs,
...
}:
let

View file

@ -1,7 +1,6 @@
{
lib,
config,
pkgs,
...
}:
let

View file

@ -1,7 +1,6 @@
{
lib,
config,
pkgs,
...
}:
let

View file

@ -1,7 +1,6 @@
{
lib,
config,
pkgs,
...
}:
let

View file

@ -1,7 +1,6 @@
{
lib,
config,
pkgs,
...
}:
let

View file

@ -3,7 +3,6 @@
# and in the NixOS manual (accessible by running nixos-help).
{
config,
pkgs,
inputs,
...

View file

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

View file

@ -1,4 +1,4 @@
{ config, pkgs, ... }:
{ ... }:
{
home.username = "krop";
home.homeDirectory = "/home/krop";

View file

@ -1,5 +1,4 @@
{
config,
pkgs,
inputs,
...

View file

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

View file

@ -1,4 +1,4 @@
{ config, pkgs, ... }:
{ ... }:
{
home.username = "krop";
home.homeDirectory = "/home/krop";

View file

@ -3,7 +3,7 @@
pkgs,
lib,
...
}@inputs:
}:
let
cfg = config.krop.cli;
in

View file

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

View file

@ -1,6 +1,5 @@
{
config,
pkgs,
lib,
...
}: