summaryrefslogtreecommitdiff
path: root/home-manager/flake.nix
diff options
context:
space:
mode:
authorJakub Stachurski <j.stachurski@student.utwente.nl>2025-08-17 11:25:33 +0200
committerJakub Stachurski <j.stachurski@student.utwente.nl>2025-08-17 11:25:33 +0200
commit1be972048dd58218cd689ecb5cac562eb398b751 (patch)
tree203f19ee01ad5fe28f2868e8c1451f9538e4ab12 /home-manager/flake.nix
parent3cd59d4670711e34a50adea912c3b0894883e490 (diff)
refreshed config
Diffstat (limited to 'home-manager/flake.nix')
-rw-r--r--home-manager/flake.nix43
1 files changed, 0 insertions, 43 deletions
diff --git a/home-manager/flake.nix b/home-manager/flake.nix
deleted file mode 100644
index 822f43b..0000000
--- a/home-manager/flake.nix
+++ /dev/null
@@ -1,43 +0,0 @@
-{
- description = "Home-manager configuration";
-
- nixConfig = {
- experimental-feature = [
- "nix-command"
- "flakes"
- ];
- };
- inputs = {
- nixpkgs.url = "github:NixOS/nixpkgs/nixos-25.05";
- # nixpkgs-unstable.url = "github:NixOS/nixpkgs/nixos-unstable";
- flake-utils.url = "github:numtide/flake-utils";
- home-manager = {
- url = "github:nix-community/home-manager/release-25.05";
- inputs.nixpkgs.follows = "nixpkgs";
- };
- iamb.url = "github:ulyssa/iamb";
- };
-
- outputs =
- {
- self,
- nixpkgs,
- home-manager,
- ...
- }@inputs:
- let
- inherit (self) outputs;
- in {
- homeConfigurations = {
- "wilkuu" = home-manager.lib.homeManagerConfiguration {
- modules = [
- (import ./home)
- (import ./modules)
- ];
- # TODO: Figure out how to ship on other platforms in case you want to use a NixOS Pi, or a 32bit machine
- pkgs = nixpkgs.legacyPackages.x86_64-linux;
- extraSpecialArgs = {inherit inputs outputs;};
- };
- };
- };
-}