Add Fifefox module

This commit is contained in:
Yorick Barbanneau 2023-12-29 00:38:04 +01:00
parent be9c200d0c
commit cf609571f0
20 changed files with 153 additions and 168 deletions

View file

@ -2,21 +2,22 @@
description = "My systems installation";
inputs = {
nixpkgs.url = "nixpkgs/nixos-unstable";
nur.url = "github:nix-community/NUR";
home-manager = {
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = { self, nixpkgs, home-manager, ... }@inputs:
outputs = { self, nixpkgs, home-manager, nur, ... }@inputs:
let
stateVersion = "23.11";
in rec {
in {
nixosConfigurations = {
morty = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
specialArgs = {
inherit stateVersion;
inherit stateVersion inputs;
hostname = "morty";
username = "ephase";
hostConfig = {
@ -31,7 +32,7 @@ in rec {
mrmeeseeks = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
specialArgs = {
inherit stateVersion;
inherit stateVersion inputs;
hostname = "mrmeeseeks";
username = "ephase";
hostConfig = {
@ -46,7 +47,7 @@ in rec {
luci = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
specialArgs = {
inherit stateVersion;
inherit stateVersion inputs;
hostname = "luci";
username = "ephase";
hostConfig = {