walker be workin now
This commit is contained in:
parent
4cbfffefaa
commit
0db960aec4
6 changed files with 36 additions and 24 deletions
|
|
@ -18,6 +18,7 @@
|
||||||
# Include the results of the hardware scan.
|
# Include the results of the hardware scan.
|
||||||
./imports.nix
|
./imports.nix
|
||||||
];
|
];
|
||||||
|
programs.walker.enable = true;
|
||||||
|
|
||||||
environment.pathsToLink = [ "/share/applications" "/share/xdg-desktop-portal" ];
|
environment.pathsToLink = [ "/share/applications" "/share/xdg-desktop-portal" ];
|
||||||
# This value determines the NixOS release from which the default
|
# This value determines the NixOS release from which the default
|
||||||
|
|
|
||||||
43
flake.nix
43
flake.nix
|
|
@ -19,6 +19,7 @@
|
||||||
self,
|
self,
|
||||||
nixpkgs,
|
nixpkgs,
|
||||||
home-manager,
|
home-manager,
|
||||||
|
walker,
|
||||||
...
|
...
|
||||||
}@inputs:
|
}@inputs:
|
||||||
let
|
let
|
||||||
|
|
@ -26,26 +27,29 @@
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
nixosConfigurations = {
|
nixosConfigurations = {
|
||||||
marty-pc = nixpkgs.lib.nixosSystem {
|
# marty-pc = nixpkgs.lib.nixosSystem {
|
||||||
system = "x86_64-linux";
|
# system = "x86_64-linux";
|
||||||
modules = [
|
# specialArgs = { inherit inputs; };
|
||||||
./marty-pc.nix
|
# modules = [
|
||||||
./configuration.nix
|
# ./marty-pc.nix
|
||||||
./user/marty.nix
|
# ./configuration.nix
|
||||||
home-manager.nixosModules.home-manager
|
# ./user/marty.nix
|
||||||
# inputs.walker.homeManagerModules.default
|
# home-manager.nixosModules.home-manager
|
||||||
];
|
# walker.homeManagerModules.default
|
||||||
};
|
# ];
|
||||||
marty-server = nixpkgs.lib.nixosSystem {
|
# };
|
||||||
system = "x86_64-linux";
|
# marty-server = nixpkgs.lib.nixosSystem {
|
||||||
modules = [
|
# system = "x86_64-linux";
|
||||||
./marty-server.nix
|
# specialArgs = { inherit inputs; };
|
||||||
./configuration.nix
|
# modules = [
|
||||||
./user/marty.nix
|
# ./marty-server.nix
|
||||||
home-manager.nixosModules.home-manager
|
# ./configuration.nix
|
||||||
|
# ./user/marty.nix
|
||||||
|
# home-manager.nixosModules.home-manager
|
||||||
|
# walker.homeManagerModules.default
|
||||||
|
|
||||||
];
|
# ];
|
||||||
};
|
# };
|
||||||
marty-latitude = nixpkgs.lib.nixosSystem {
|
marty-latitude = nixpkgs.lib.nixosSystem {
|
||||||
system = "x86_64-linux";
|
system = "x86_64-linux";
|
||||||
specialArgs = { inherit inputs; };
|
specialArgs = { inherit inputs; };
|
||||||
|
|
@ -54,6 +58,7 @@
|
||||||
./configuration.nix
|
./configuration.nix
|
||||||
./user/marty.nix
|
./user/marty.nix
|
||||||
home-manager.nixosModules.home-manager
|
home-manager.nixosModules.home-manager
|
||||||
|
walker.nixosModules.default
|
||||||
|
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -4,6 +4,7 @@
|
||||||
pkgs,
|
pkgs,
|
||||||
modulesPath,
|
modulesPath,
|
||||||
home-manager,
|
home-manager,
|
||||||
|
inputs,
|
||||||
...
|
...
|
||||||
}:
|
}:
|
||||||
|
|
||||||
|
|
@ -15,6 +16,7 @@
|
||||||
home-manager = {
|
home-manager = {
|
||||||
useGlobalPkgs = true;
|
useGlobalPkgs = true;
|
||||||
useUserPackages = true;
|
useUserPackages = true;
|
||||||
|
|
||||||
users = {
|
users = {
|
||||||
marty = import ./modules/home.nix;
|
marty = import ./modules/home.nix;
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,6 @@
|
||||||
{ config, pkgs, ... }:
|
{ config, pkgs, inputs, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
imports = [ ./window_manager ];
|
|
||||||
# Home Manager needs a bit of information about you and the paths it should
|
# Home Manager needs a bit of information about you and the paths it should
|
||||||
# manage.
|
# manage.
|
||||||
home.username = "marty";
|
home.username = "marty";
|
||||||
|
|
@ -77,6 +76,9 @@
|
||||||
EDITOR = "codium";
|
EDITOR = "codium";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
imports = [
|
||||||
|
./window_manager
|
||||||
|
];
|
||||||
# Let Home Manager install and manage itself.
|
# Let Home Manager install and manage itself.
|
||||||
programs.home-manager.enable = true;
|
programs.home-manager.enable = true;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,6 @@
|
||||||
}:
|
}:
|
||||||
|
|
||||||
{
|
{
|
||||||
home.packages = [ pkgs.cmatrix ];
|
|
||||||
programs.rofi = {
|
programs.rofi = {
|
||||||
enable = true;
|
enable = true;
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -34,10 +34,13 @@
|
||||||
wayland.windowManager.hyprland = {
|
wayland.windowManager.hyprland = {
|
||||||
enable = true;
|
enable = true;
|
||||||
settings = {
|
settings = {
|
||||||
|
exec-once = [
|
||||||
|
"elephant"
|
||||||
|
];
|
||||||
"$mod" = "SUPER";
|
"$mod" = "SUPER";
|
||||||
bind = [
|
bind = [
|
||||||
"$mod, D, exec, rofi -show drun"
|
"$mod, D, exec, walker"
|
||||||
"$mod, Enter, exec, kitty"
|
"$mod, return, exec, kitty"
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue