mirror of
https://github.com/daylinmorgan/oizys.git
synced 2024-11-05 01:53:15 -06:00
updates
This commit is contained in:
parent
60fc6387bf
commit
4598aa9915
3 changed files with 11 additions and 10 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1 +1,2 @@
|
|||
result*
|
||||
.task.mk
|
||||
|
|
10
Makefile
10
Makefile
|
@ -1,7 +1,13 @@
|
|||
## switch | perform nixos rebuild
|
||||
switch:
|
||||
sudo nixos-rebuild switch --flake . --impure
|
||||
|
||||
|
||||
## lint | format *.nix
|
||||
lint:
|
||||
nixpkgs-fmt .
|
||||
|
||||
.PHONY: lint
|
||||
.PHONY: lint switch
|
||||
|
||||
USAGE := {a.style('==>','bold')} {a.style('flakes ftw','header')} {a.style('<==','bold')}\n
|
||||
-include .task.mk
|
||||
$(if $(filter help,$(MAKECMDGOALS)),$(if $(wildcard .task.mk),,.task.mk: ; curl -fsSL https://raw.githubusercontent.com/daylinmorgan/task.mk/v22.9.28/task.mk -o .task.mk))
|
||||
|
|
|
@ -6,8 +6,9 @@
|
|||
<nixpkgs/nixos/modules/installer/virtualbox-demo.nix>
|
||||
];
|
||||
|
||||
nix.package = pkgs.nixUnstable;
|
||||
nixpkgs.config.allowUnfree = true;
|
||||
|
||||
nix.package = pkgs.nixUnstable;
|
||||
nix.extraOptions = ''
|
||||
experimental-features = nix-command flakes
|
||||
'';
|
||||
|
@ -37,8 +38,6 @@
|
|||
shell = pkgs.zsh;
|
||||
isNormalUser = true;
|
||||
extraGroups = [ "wheel" ]; # Enable ‘sudo’ for the user.
|
||||
packages = with pkgs; [
|
||||
];
|
||||
};
|
||||
};
|
||||
|
||||
|
@ -84,11 +83,6 @@
|
|||
gnome.gnome-settings-daemon
|
||||
catppuccin-gtk
|
||||
|
||||
|
||||
# (python3.withPackages (p: with p;
|
||||
# [ pynvim ]))
|
||||
|
||||
# firefox
|
||||
wavebox
|
||||
|
||||
pciutils
|
||||
|
|
Loading…
Reference in a new issue