Compare commits
6 commits
606cd8cf84
...
1751704ab3
Author | SHA1 | Date | |
---|---|---|---|
Bruno BELANYI | 1751704ab3 | ||
Bruno BELANYI | e799318a36 | ||
Bruno BELANYI | 359456fbc1 | ||
Bruno BELANYI | 1ff03e35f8 | ||
Bruno BELANYI | 31601f58b4 | ||
Bruno BELANYI | d8c19d45ad |
|
@ -1,10 +1,10 @@
|
||||||
{ self, inputs, ... }:
|
{ inputs, ... }:
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
inputs.pre-commit-hooks.flakeModule
|
inputs.pre-commit-hooks.flakeModule
|
||||||
];
|
];
|
||||||
|
|
||||||
perSystem = { system, ... }: {
|
perSystem = { ... }: {
|
||||||
pre-commit = {
|
pre-commit = {
|
||||||
# Add itself to `nix flake check`
|
# Add itself to `nix flake check`
|
||||||
check.enable = true;
|
check.enable = true;
|
||||||
|
|
|
@ -1,9 +1,6 @@
|
||||||
{ self
|
{ self
|
||||||
, flake-parts
|
, flake-parts
|
||||||
, futils
|
, futils
|
||||||
, home-manager
|
|
||||||
, nixpkgs
|
|
||||||
, nur
|
|
||||||
, ...
|
, ...
|
||||||
} @ inputs:
|
} @ inputs:
|
||||||
let
|
let
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{ inputs, ... }:
|
{ ... }:
|
||||||
{
|
{
|
||||||
perSystem = { self', config, pkgs, ... }: {
|
perSystem = { config, pkgs, ... }: {
|
||||||
devShells = {
|
devShells = {
|
||||||
default = pkgs.mkShell {
|
default = pkgs.mkShell {
|
||||||
name = "NixOS-config";
|
name = "NixOS-config";
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{ config, lib, pkgs, ... }:
|
{ config, lib, ... }:
|
||||||
let
|
let
|
||||||
cfg = config.my.home.terminal;
|
cfg = config.my.home.terminal;
|
||||||
in
|
in
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{ config, lib, pkgs, ... }:
|
{ config, lib, ... }:
|
||||||
let
|
let
|
||||||
cfg = config.my.hardware.firmware;
|
cfg = config.my.hardware.firmware;
|
||||||
in
|
in
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
# Podman related settings
|
# Podman related settings
|
||||||
{ config, inputs, lib, options, pkgs, ... }:
|
{ config, lib, options, ... }:
|
||||||
let
|
let
|
||||||
cfg = config.my.system.podman;
|
cfg = config.my.system.podman;
|
||||||
in
|
in
|
||||||
|
|
Loading…
Reference in a new issue