Compare commits

..

No commits in common. "1751704ab3edc842d09b06b29e8225b27a53570a" and "606cd8cf84f2d07cc26fbce286161f9765bfd37b" have entirely different histories.

6 changed files with 10 additions and 7 deletions

View file

@ -1,10 +1,10 @@
{ inputs, ... }:
{ self, inputs, ... }:
{
imports = [
inputs.pre-commit-hooks.flakeModule
];
perSystem = { ... }: {
perSystem = { system, ... }: {
pre-commit = {
# Add itself to `nix flake check`
check.enable = true;

View file

@ -1,6 +1,9 @@
{ self
, flake-parts
, futils
, home-manager
, nixpkgs
, nur
, ...
} @ inputs:
let

View file

@ -1,6 +1,6 @@
{ ... }:
{ inputs, ... }:
{
perSystem = { config, pkgs, ... }: {
perSystem = { self', config, pkgs, ... }: {
devShells = {
default = pkgs.mkShell {
name = "NixOS-config";

View file

@ -1,4 +1,4 @@
{ config, lib, ... }:
{ config, lib, pkgs, ... }:
let
cfg = config.my.home.terminal;
in

View file

@ -1,4 +1,4 @@
{ config, lib, ... }:
{ config, lib, pkgs, ... }:
let
cfg = config.my.hardware.firmware;
in

View file

@ -1,5 +1,5 @@
# Podman related settings
{ config, lib, options, ... }:
{ config, inputs, lib, options, pkgs, ... }:
let
cfg = config.my.system.podman;
in