replace rofi with rofi-wayland
This commit is contained in:
parent
71becb872e
commit
aad529ecbc
6 changed files with 80 additions and 50 deletions
38
flake.nix
38
flake.nix
|
|
@ -6,35 +6,39 @@
|
|||
nixpkgs-unstable.url = "github:nixos/nixpkgs/nixpkgs-unstable";
|
||||
home-manager.url = "github:nix-community/home-manager/release-24.11";
|
||||
home-manager.inputs.nixpkgs.follows = "nixpkgs";
|
||||
nix-index-database.url = "github:nix-community/nix-index-database";
|
||||
nix-index-database.inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
|
||||
outputs =
|
||||
{ self, nixpkgs-unstable, nixpkgs, ... }@inputs:
|
||||
{ self, nixpkgs-unstable, nixpkgs, nix-index-database, ... }@inputs:
|
||||
let
|
||||
system = "x86_64-linux";
|
||||
pkgs = nixpkgs.legacyPackages.${system};
|
||||
pkgsUnstable = nixpkgs-unstable.legacyPackages.${system};
|
||||
nixvim.url = "github:azuwis/lazyvim-nixvim";
|
||||
in {
|
||||
in
|
||||
{
|
||||
formatter.x86_64-linux = nixpkgs.legacyPackages.x86_64-linux.nixfmt-rfc-style;
|
||||
nixosConfigurations.dn-nix = nixpkgs.lib.nixosSystem {
|
||||
modules =
|
||||
[
|
||||
./system/configuration.nix
|
||||
];
|
||||
[
|
||||
nix-index-database.nixosModules.nix-index
|
||||
./system/configuration.nix
|
||||
];
|
||||
specialArgs = { inherit inputs; inherit pkgsUnstable; };
|
||||
};
|
||||
|
||||
# homeConfigurations = {
|
||||
# danny = home-manager.lib.homeManagerConfiguration {
|
||||
# inherit pkgs;
|
||||
# modules = [ ./home ];
|
||||
# extraSpecialArgs = {
|
||||
# inherit pkgs-unstable;
|
||||
# inherit inputs;
|
||||
# };
|
||||
# };
|
||||
# };
|
||||
# programs.home-manager.enable = true;
|
||||
|
||||
# homeConfigurations = {
|
||||
# danny = home-manager.lib.homeManagerConfiguration {
|
||||
# inherit pkgs;
|
||||
# modules = [ ./home ];
|
||||
# extraSpecialArgs = {
|
||||
# inherit pkgs-unstable;
|
||||
# inherit inputs;
|
||||
# };
|
||||
# };
|
||||
# };
|
||||
# programs.home-manager.enable = true;
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue