Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- {
- description = "NixOS configuration";
- inputs = {
- nixpkgs.url = "github:nixos/nixpkgs/release-24.11";
- home-manager.url = "github:nix-community/home-manager/release-24.11";
- home-manager.inputs.nixpkgs.follows = "nixpkgs";
- };
- outputs =
- inputs@{ nixpkgs, home-manager, ... }:
- {
- nixosConfigurations = {
- #Replace the below with your hostname!!! Like: {hostname} = nixpkgs.lib.nixosSystem {
- nixos = nixpkgs.lib.nixosSystem {
- system = "x86_64-linux";
- modules = [
- ./configuration.nix
- ./firefox.nix
- ./zsh.nix
- ./packages.nix
- home-manager.nixosModules.home-manager
- {
- home-manager.useGlobalPkgs = true;
- home-manager.useUserPackages = true;
- home-manager.users.cookiez = ./home.nix;
- # Optionally, use home-manager.extraSpecialArgs to pass
- # arguments to home.nix
- }
- ];
- };
- };
- };
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement