cleanup on isle 6

This commit is contained in:
Osman Faruk Bayram 2025-02-26 01:26:41 +03:00
parent c9ed15cb89
commit c33b951304
3 changed files with 8 additions and 16 deletions

View file

@ -46,12 +46,6 @@
outputs = { outputs = {
self, self,
nixpkgs, nixpkgs,
vscode-server,
agenix,
osbm-nvim,
home-manager,
raspberry-pi-nix,
nixos-hardware,
nix-on-droid, nix-on-droid,
... ...
} @ inputs: let } @ inputs: let
@ -68,20 +62,15 @@
}; };
harmonica = nixpkgs.lib.nixosSystem { harmonica = nixpkgs.lib.nixosSystem {
specialArgs = {inherit inputs outputs;}; specialArgs = {inherit inputs outputs;};
modules = [ modules = [./hosts/harmonica/configuration.nix];
./hosts/harmonica/configuration.nix
];
}; };
pochita = nixpkgs.lib.nixosSystem { pochita = nixpkgs.lib.nixosSystem {
specialArgs = {inherit inputs outputs;}; specialArgs = {inherit inputs outputs;};
modules = [./hosts/pochita/configuration.nix]; modules = [./hosts/pochita/configuration.nix];
}; };
pochita-sd = nixpkgs.lib.nixosSystem { pochita-sd = nixpkgs.lib.nixosSystem {
modules = [ specialArgs = {inherit inputs outputs;};
./hosts/pochita-sd/configuration.nix modules = [./hosts/pochita-sd/configuration.nix];
raspberry-pi-nix.nixosModules.raspberry-pi
raspberry-pi-nix.nixosModules.sd-image
];
}; };
myISO = nixpkgs.lib.nixosSystem { myISO = nixpkgs.lib.nixosSystem {
modules = [ modules = [

View file

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

View file

@ -1,8 +1,12 @@
{ {
pkgs, pkgs,
lib, inputs,
... ...
}: { }: {
imports = [
inputs.raspberry-pi-nix.nixosModules.raspberry-pi
inputs.raspberry-pi-nix.nixosModules.sd-image
];
# bcm2711 for rpi 3, 3+, 4, zero 2 w # bcm2711 for rpi 3, 3+, 4, zero 2 w
# bcm2712 for rpi 5 # bcm2712 for rpi 5
# See the docs at: # See the docs at: