mirror of
https://github.com/bartvdbraak/dotfiles.git
synced 2025-06-27 19:59:09 +00:00
Update flake to use 25.05
This commit is contained in:
parent
249bf0fbc2
commit
5ce17a639f
2 changed files with 41 additions and 38 deletions
22
nixos/flake.lock
generated
22
nixos/flake.lock
generated
|
@ -23,14 +23,18 @@
|
|||
},
|
||||
"nixpkgs": {
|
||||
"locked": {
|
||||
"lastModified": 0,
|
||||
"narHash": "sha256-vH5mXxEvZeoGNkqKoCluhTGfoeXCZ1seYhC2pbMN0sg=",
|
||||
"path": "/nix/store/zd5dgszslv09jzybcpf25gpl12s6r2d9-source",
|
||||
"type": "path"
|
||||
"lastModified": 1747953325,
|
||||
"narHash": "sha256-y2ZtlIlNTuVJUZCqzZAhIw5rrKP4DOSklev6c8PyCkQ=",
|
||||
"owner": "NixOS",
|
||||
"repo": "nixpkgs",
|
||||
"rev": "55d1f923c480dadce40f5231feb472e81b0bab48",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
"id": "nixpkgs",
|
||||
"type": "indirect"
|
||||
"owner": "NixOS",
|
||||
"ref": "nixos-25.05",
|
||||
"repo": "nixpkgs",
|
||||
"type": "github"
|
||||
}
|
||||
},
|
||||
"nixpkgs_2": {
|
||||
|
@ -61,11 +65,11 @@
|
|||
"nixpkgs": "nixpkgs_2"
|
||||
},
|
||||
"locked": {
|
||||
"lastModified": 1748060564,
|
||||
"narHash": "sha256-KTceiwnQm5MFAjtQtSp2/lkodwSd2jub/wCYfVGIFKI=",
|
||||
"lastModified": 1748090150,
|
||||
"narHash": "sha256-WrcGLv4Q94B2eG+jj5EckQfItR4zTAz/8uX2to4bU4g=",
|
||||
"owner": "0xc000022070",
|
||||
"repo": "zen-browser-flake",
|
||||
"rev": "1963b92737b62652fa85e1dfc57d5f4c6d28aea4",
|
||||
"rev": "d25f7e7fc5a2ebcb4c41924b4755eec642e6f18d",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
|
|
|
@ -2,38 +2,37 @@
|
|||
description = "Bart's NixOS Configuration";
|
||||
|
||||
inputs = {
|
||||
nixpkgs.url = "github:NixOS/nixpkgs/nixos-25.05";
|
||||
zen-browser.url = "github:0xc000022070/zen-browser-flake";
|
||||
};
|
||||
|
||||
outputs =
|
||||
{ nixpkgs, ... }@inputs:
|
||||
{
|
||||
nixosConfigurations = {
|
||||
tongfang = nixpkgs.lib.nixosSystem {
|
||||
specialArgs = { inherit inputs; };
|
||||
modules = [
|
||||
./hardware/tongfang.nix
|
||||
./configuration.nix
|
||||
./users.nix
|
||||
./packages.nix
|
||||
./services.nix
|
||||
./modules/bootloader.nix
|
||||
./modules/fonts.nix
|
||||
];
|
||||
};
|
||||
qemu = nixpkgs.lib.nixosSystem {
|
||||
specialArgs = { inherit inputs; };
|
||||
modules = [
|
||||
./hardware/qemu.nix
|
||||
./modules/kde.nix
|
||||
./modules/configuration.nix
|
||||
./modules/display-manager.nix
|
||||
./modules/greeter.nix
|
||||
./modules/networking.nix
|
||||
./modules/nix-settings.nix
|
||||
./modules/users.nix
|
||||
];
|
||||
};
|
||||
outputs = { nixpkgs, ... }@inputs: {
|
||||
nixosConfigurations = {
|
||||
tongfang = nixpkgs.lib.nixosSystem {
|
||||
specialArgs = { inherit inputs; };
|
||||
modules = [
|
||||
./hardware/tongfang.nix
|
||||
./configuration.nix
|
||||
./users.nix
|
||||
./packages.nix
|
||||
./services.nix
|
||||
./modules/bootloader.nix
|
||||
./modules/fonts.nix
|
||||
];
|
||||
};
|
||||
qemu = nixpkgs.lib.nixosSystem {
|
||||
specialArgs = { inherit inputs; };
|
||||
modules = [
|
||||
./hardware/qemu.nix
|
||||
./modules/kde.nix
|
||||
./modules/configuration.nix
|
||||
./modules/display-manager.nix
|
||||
./modules/greeter.nix
|
||||
./modules/networking.nix
|
||||
./modules/nix-settings.nix
|
||||
./modules/users.nix
|
||||
];
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue